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.
141 lines
3.5 KiB
Java
141 lines
3.5 KiB
Java
package com.glxp.api.req.basic;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class UdiInfoRequest {
|
|
private Integer id;
|
|
private String nameCode;
|
|
private String packRatio;
|
|
private String packLevel;
|
|
private Integer bhxjsl;
|
|
private Integer bhzxxsbzsl;
|
|
private Integer zxxsbzbhsydysl;
|
|
private String bhxjcpbm;
|
|
private String sjcpbm; //
|
|
private String bzcj;
|
|
private String addType;
|
|
private String deviceRecordKey;
|
|
private String cpmctymc;
|
|
private String cplb;
|
|
private String flbm;
|
|
private String ggxh;
|
|
private String qxlb;
|
|
private String tyshxydm;
|
|
private String ylqxzcrbarmc;
|
|
private String zczbhhzbapzbh;
|
|
private String ylqxzcrbarywmc;
|
|
private String sydycpbs;
|
|
private String uuid;
|
|
private Integer versionNumber;
|
|
private Integer diType;
|
|
private String thirdId;
|
|
private String thirdName;
|
|
private String ybbm;
|
|
private String sptm;
|
|
private String manufactory;
|
|
private String measname;
|
|
private Integer productType;
|
|
private String scbssfbhph;
|
|
private String scbssfbhxlh;
|
|
private String scbssfbhscrq;
|
|
private String scbssfbhsxrq;
|
|
private String cpms;
|
|
private String spmc;
|
|
private String originUuid;
|
|
|
|
//本地生成信息
|
|
private String batchNo;
|
|
private String produceDate;
|
|
private String expireDate;
|
|
private String serialNo;
|
|
private String udi;
|
|
private String code;
|
|
private Integer count;
|
|
private String warehouseCode;
|
|
private String udplatCode;
|
|
private String relId;//关联ID主键
|
|
private Integer status;
|
|
private String supId;
|
|
|
|
private Boolean isCheck;
|
|
private boolean allowNoBatch;
|
|
private boolean allowNoExpire;
|
|
private boolean allowNoProduct;
|
|
private boolean allowNoSerial;
|
|
private String price;
|
|
private String cplx;
|
|
private String hchzsb;
|
|
|
|
//产品代理商
|
|
private String cpdls;
|
|
|
|
|
|
private String basicPrductRemak1;
|
|
private String basicPrductRemak2;
|
|
private String basicPrductRemak3;
|
|
private String basicPrductRemak4;
|
|
private String basicPrductRemak5;
|
|
private String basicPrductRemak6;
|
|
private String basicPrductRemak7;
|
|
private String basicPrductRemak8;
|
|
|
|
private String sfwblztlcp;
|
|
private String cgzmraqxgxx;
|
|
private String sfbjwycxsy;
|
|
private String zdcfsycs;
|
|
private String sfwwjbz;
|
|
private String syqsfxyjxmj;
|
|
private String mjfs;
|
|
private String categoryName;
|
|
|
|
|
|
/**
|
|
* 一级分类名称(学科,品名)
|
|
*/
|
|
@TableField(value = "catalogname1")
|
|
@ApiModelProperty(value="一级分类名称(学科,品名)")
|
|
private String catalogname1;
|
|
|
|
/**
|
|
* 二级分类名称(用途、品目)
|
|
*/
|
|
@TableField(value = "catalogname2")
|
|
@ApiModelProperty(value="二级分类名称(用途、品目)")
|
|
private String catalogname2;
|
|
|
|
/**
|
|
* 三级分类名称(部位、功能、品种)
|
|
*/
|
|
@TableField(value = "catalogname3")
|
|
@ApiModelProperty(value="三级分类名称(部位、功能、品种)")
|
|
private String catalogname3;
|
|
|
|
/**
|
|
* 耗材材质
|
|
*/
|
|
@TableField(value = "matrial")
|
|
@ApiModelProperty(value="耗材材质")
|
|
private String matrial;
|
|
|
|
private String catalogcode;
|
|
|
|
|
|
//药品数据
|
|
private String prepnSpec;
|
|
private String prepnUnit;
|
|
private String bzgg;
|
|
/**
|
|
* 明细分类
|
|
*/
|
|
private Integer detailSort;
|
|
|
|
|
|
public void setCheck(Boolean check) {
|
|
isCheck = check;
|
|
}
|
|
|
|
}
|