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.
200 lines
4.1 KiB
Java
200 lines
4.1 KiB
Java
package com.glxp.api.entity.thrsys;
|
|
|
|
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 java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@TableName(value = "thr_order_detail")
|
|
public class ThrOrderDetailEntity implements Serializable {
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Integer id;
|
|
|
|
/**
|
|
* 产品编码
|
|
*/
|
|
@TableField(value = "productId")
|
|
private String productId;
|
|
|
|
/**
|
|
* 产品名称
|
|
*/
|
|
@TableField(value = "productName")
|
|
private String productName;
|
|
|
|
/**
|
|
* 规格型号
|
|
*/
|
|
@TableField(value = "spec")
|
|
private String spec;
|
|
|
|
/**
|
|
* 批次号
|
|
*/
|
|
@TableField(value = "batchNo")
|
|
private String batchNo;
|
|
|
|
/**
|
|
* 失效日期
|
|
*/
|
|
@TableField(value = "expireDate")
|
|
private String expireDate;
|
|
|
|
/**
|
|
* 生产日期
|
|
*/
|
|
@TableField(value = "productDate")
|
|
private String productDate;
|
|
|
|
/**
|
|
* 数量
|
|
*/
|
|
@TableField(value = "`count`")
|
|
private Integer count;
|
|
|
|
/**
|
|
* 实际数量
|
|
*/
|
|
@TableField(value = "reCount")
|
|
private Integer reCount;
|
|
|
|
/**
|
|
* 订单号
|
|
*/
|
|
@TableField(value = "orderIdFk")
|
|
private String orderIdFk;
|
|
|
|
/**
|
|
* 第三方系统标识
|
|
*/
|
|
@TableField(value = "thirdSysFk")
|
|
private String thirdSysFk;
|
|
|
|
/**
|
|
* 供应商ID
|
|
*/
|
|
@TableField(value = "supId")
|
|
private String supId;
|
|
|
|
/**
|
|
* 供应商名称
|
|
*/
|
|
@TableField(value = "supName")
|
|
private String supName;
|
|
|
|
/**
|
|
* 单价
|
|
*/
|
|
@TableField(value = "price")
|
|
private BigDecimal price;
|
|
|
|
/**
|
|
* 往来单位
|
|
*/
|
|
@TableField(value = "corpName")
|
|
private String corpName;
|
|
|
|
/**
|
|
* 医疗器械注册人
|
|
*/
|
|
@TableField(value = "ylqxzcrbarmc")
|
|
private String ylqxzcrbarmc;
|
|
|
|
/**
|
|
* 注册证号
|
|
*/
|
|
@TableField(value = "zczbhhzbapzbh")
|
|
private String zczbhhzbapzbh;
|
|
|
|
/**
|
|
* 生产企业
|
|
*/
|
|
@TableField(value = "manufactory")
|
|
private String manufactory;
|
|
|
|
/**
|
|
* 创建人
|
|
*/
|
|
@TableField(value = "`createUser`")
|
|
private String createUser;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
@TableField(value = "createTime")
|
|
private Date createTime;
|
|
|
|
/**
|
|
* 更新人
|
|
*/
|
|
@TableField(value = "updateUser")
|
|
private String updateUser;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
@TableField(value = "updateTime")
|
|
private Date updateTime;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
@TableField(value = "remark")
|
|
private String remark;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public static final String COL_ID = "id";
|
|
|
|
public static final String COL_PRODUCTID = "productId";
|
|
|
|
public static final String COL_PRODUCTNAME = "productName";
|
|
|
|
public static final String COL_SPEC = "spec";
|
|
|
|
public static final String COL_BATCHNO = "batchNo";
|
|
|
|
public static final String COL_EXPIREDATE = "expireDate";
|
|
|
|
public static final String COL_PRODUCTDATE = "productDate";
|
|
|
|
public static final String COL_COUNT = "count";
|
|
|
|
public static final String COL_RECOUNT = "reCount";
|
|
|
|
public static final String COL_ORDERIDFK = "orderIdFk";
|
|
|
|
public static final String COL_THIRDSYSFK = "thirdSysFk";
|
|
|
|
public static final String COL_SUPID = "supId";
|
|
|
|
public static final String COL_SUPNAME = "supName";
|
|
|
|
public static final String COL_PRICE = "price";
|
|
|
|
public static final String COL_CORPNAME = "corpName";
|
|
|
|
public static final String COL_YLQXZCRBARMC = "ylqxzcrbarmc";
|
|
|
|
public static final String COL_ZCZBHHZBAPZBH = "zczbhhzbapzbh";
|
|
|
|
public static final String COL_MANUFACTORY = "manufactory";
|
|
|
|
public static final String COL_CREATEUSER = "createUser";
|
|
|
|
public static final String COL_CREATETIME = "createTime";
|
|
|
|
public static final String COL_UPDATEUSER = "updateUser";
|
|
|
|
public static final String COL_UPDATETIME = "updateTime";
|
|
|
|
public static final String COL_REMARK = "remark";
|
|
}
|