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.
63 lines
878 B
Java
63 lines
878 B
Java
9 months ago
|
package com.glxp.api.entity.thrsys;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.Date;
|
||
|
|
||
|
@Data
|
||
|
@TableName(value = "code_rel")
|
||
|
public class CodeRel {
|
||
|
|
||
|
public Integer id;
|
||
|
|
||
|
/**
|
||
|
* 器械最小销售产品标识
|
||
|
*/
|
||
|
public String dinamecode;
|
||
|
|
||
|
/**
|
||
|
* 阿里药品标识码
|
||
|
*/
|
||
|
public String drugcode;
|
||
|
|
||
|
/**
|
||
|
* 医保编码
|
||
|
*/
|
||
|
public String ybbm;
|
||
|
|
||
|
/**
|
||
|
* 阳光采购平台编码
|
||
|
*/
|
||
|
public String yccode;
|
||
|
|
||
|
/**
|
||
|
* 商品条码
|
||
|
*/
|
||
|
public String sptm;
|
||
|
|
||
|
/**
|
||
|
* 药品本位码
|
||
|
*/
|
||
|
public String ypbwm;
|
||
|
|
||
|
/**
|
||
|
* 统一社会信用号
|
||
|
*/
|
||
|
public String tyshxyh;
|
||
|
|
||
|
/**
|
||
|
* 国家编码9码
|
||
|
*/
|
||
|
public String gjbm;
|
||
|
|
||
|
public String status;
|
||
|
|
||
|
public Date updatetime;
|
||
|
|
||
|
public Date createtime;
|
||
|
|
||
|
public Byte fromtype;
|
||
|
|
||
|
|
||
|
}
|