feat: 多码融合转发

dev
chenhc 5 months ago
parent f8c948eee4
commit cdf33c8990

@ -1,5 +1,8 @@
package com.glxp.sale.admin.entity.sync; package com.glxp.sale.admin.entity.sync;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data; import lombok.Data;
@ -9,55 +12,69 @@ import java.util.Date;
@TableName(value = "code_rel") @TableName(value = "code_rel")
public class CodeRel { public class CodeRel {
@TableId(type = IdType.AUTO)
public Integer id; public Integer id;
/** /**
* *
*/ */
public String dinamecode; @TableField(value = "diNameCode")
public String diNameCode;
/** /**
* *
*/ */
public String drugcode; @TableField(value = "drugCode")
public String drugCode;
/** /**
* *
*/ */
@TableField(value = "ybbm")
public String ybbm; public String ybbm;
/** /**
* *
*/ */
public String yccode; @TableField(value = "ycCode")
public String ycCode;
/** /**
* *
*/ */
@TableField(value = "sptm")
public String sptm; public String sptm;
/** /**
* *
*/ */
@TableField(value = "ypbwm")
public String ypbwm; public String ypbwm;
/** /**
* *
*/ */
@TableField(value = "tyshxyh")
public String tyshxyh; public String tyshxyh;
/** /**
* 9 * 9
*/ */
@TableField(value = "gjbm")
public String gjbm; public String gjbm;
@TableField(value = "status")
public String status; public String status;
public Date updatetime; @TableField(value = "updateTime")
public Date updateTime;
public Date createtime; @TableField(value = "createTime")
public Date createTime;
public Byte fromtype; @TableField(value = "fromtype")
public Integer fromtype;
} }
Loading…
Cancel
Save