You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
831 B
Java
32 lines
831 B
Java
package com.glxp.api.req.basic;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.glxp.api.util.page.ListPageRequest;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class YbNotCodeQuery extends ListPageRequest {
|
|
|
|
/**
|
|
* 国家医保目录编码
|
|
*/
|
|
@TableId(value = "ybbm", type = IdType.INPUT)
|
|
private String ybbm;
|
|
|
|
/**
|
|
* 机构编码
|
|
*/
|
|
@TableField(value = "organizationCode")
|
|
private String organizationCode;
|
|
|
|
/**
|
|
* 无码类型 1、部分早期未赋予追溯码 5、最小包装无追溯码 6、无追溯码 7、其他原因 0、默认不是无码类型
|
|
*/
|
|
@TableField(value = "notCodeType")
|
|
private Integer notCodeType;
|
|
|
|
private Integer excelType;
|
|
}
|