feat: 多码融合转发
parent
e5cd13ff4f
commit
f8c948eee4
@ -0,0 +1,63 @@
|
||||
package com.glxp.sale.admin.entity.sync;
|
||||
|
||||
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;
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue