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.
udi-wms-java/src/main/java/com/glxp/api/entity/collect/IoCollectOrderBizOrigin.java

353 lines
8.7 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.glxp.api.entity.collect;
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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
* 采集点单据详情
*/
@ApiModel(value="com-glxp-api-entity-collect-IoCollectOrderBizOrigin")
@Data
@TableName(value = "io_collect_order_biz_origin")
public class IoCollectOrderBizOrigin implements Serializable {
@TableId(value = "id", type = IdType.AUTO)
@ApiModelProperty(value="")
private Long id;
/**
* 单据号
*/
@TableField(value = "orderIdFk")
@ApiModelProperty(value="单据号")
private String orderIdFk;
/**
* 物资字典ID
*/
@TableField(value = "relId")
@ApiModelProperty(value="物资字典ID")
private Long relId;
/**
* 院内编码(第三方编码)
*/
@TableField(value = "thrCode")
@ApiModelProperty(value="院内编码(第三方编码)")
private String thrCode;
/**
* 医保编码
*/
@TableField(value = "ybbm")
@ApiModelProperty(value="医保编码")
private String ybbm;
/**
* 收费编码
*/
@TableField(value = "payFeeCode")
@ApiModelProperty(value="收费编码")
private String payFeeCode;
/**
* 商品条码
*/
@TableField(value = "sptm")
@ApiModelProperty(value="商品条码")
private String sptm;
/**
* 产品通用名称
*/
@TableField(value = "cpmctymc")
@ApiModelProperty(value="产品通用名称")
private String cpmctymc;
/**
* 产品标识
*/
@TableField(value = "nameCode")
@ApiModelProperty(value="产品标识")
private String nameCode;
/**
* 批次号
*/
@TableField(value = "batchNo")
@ApiModelProperty(value="批次号")
private String batchNo;
/**
* 生产日期
*/
@TableField(value = "productDate")
@ApiModelProperty(value="生产日期")
private String productDate;
/**
* 失效日期
*/
@TableField(value = "expireDate")
@ApiModelProperty(value="失效日期")
private String expireDate;
/**
* 单据数量
*/
@TableField(value = "count")
@ApiModelProperty(value="单据数量")
private Integer count;
/**
* 未拆零数量
*/
@TableField(value = "unTagCount")
@ApiModelProperty(value="未拆零数量")
private Integer unTagCount;
/**
* 实际数量
*/
@TableField(value = "actCount")
@ApiModelProperty(value="实际数量")
private Integer actCount;
/**
* 扫码数量
*/
@TableField(value = "scanCount")
@ApiModelProperty(value="扫码数量")
private Integer scanCount;
/**
* 扫码实际数量
*/
@TableField(value = "scanActCount")
@ApiModelProperty(value="扫码实际数量")
private Integer scanActCount;
/**
* 规格型号
*/
@TableField(value = "ggxh")
@ApiModelProperty(value="规格型号")
private String ggxh;
/**
* 计量单位
*/
@TableField(value = "measureUnit")
@ApiModelProperty(value="计量单位")
private String measureUnit;
/**
* 单据明细赋码状态 1:未赋码2部分赋码3已赋码
*/
@TableField(value = "tagStatus")
@ApiModelProperty(value="单据明细赋码状态 1:未赋码2部分赋码3已赋码")
private Integer tagStatus;
/**
* 赋码错误信息
*/
@TableField(value = "tagMsg")
@ApiModelProperty(value="赋码错误信息")
private String tagMsg;
/**
* 自动赋码状态1无法自动赋码2可以自动赋码3:可以自动赋码,但是数量不足
*/
@TableField(value = "autoTagStatus")
@ApiModelProperty(value="自动赋码状态1无法自动赋码2可以自动赋码3:可以自动赋码,但是数量不足")
private Byte autoTagStatus;
/**
* 备注
*/
@TableField(value = "remark")
@ApiModelProperty(value="备注")
private String remark;
/**
* 创建时间
*/
@TableField(value = "createTime")
@ApiModelProperty(value="创建时间")
private Date createTime;
/**
* 更新时间
*/
@TableField(value = "updateTime")
@ApiModelProperty(value="更新时间")
private Date updateTime;
@TableField(value = "remark1")
@ApiModelProperty(value="")
private String remark1;
@TableField(value = "remark2")
@ApiModelProperty(value="")
private String remark2;
@TableField(value = "remark3")
@ApiModelProperty(value="")
private String remark3;
@TableField(value = "remark4")
@ApiModelProperty(value="")
private String remark4;
@TableField(value = "remark5")
@ApiModelProperty(value="")
private String remark5;
@TableField(value = "remark6")
@ApiModelProperty(value="")
private String remark6;
@TableField(value = "remark7")
@ApiModelProperty(value="")
private String remark7;
@TableField(value = "remark8")
@ApiModelProperty(value="")
private String remark8;
@TableField(value = "remark9")
@ApiModelProperty(value="")
private String remark9;
@TableField(value = "remark10")
@ApiModelProperty(value="")
private String remark10;
@TableField(value = "remark11")
@ApiModelProperty(value="")
private String remark11;
@TableField(value = "remark12")
@ApiModelProperty(value="")
private String remark12;
@TableField(value = "remark13")
@ApiModelProperty(value="")
private String remark13;
@TableField(value = "remark14")
@ApiModelProperty(value="")
private String remark14;
@TableField(value = "remark15")
@ApiModelProperty(value="")
private String remark15;
/**
* 自动扫码预分配工位存量
*/
@TableField(value = "autoResCount")
@ApiModelProperty(value="自动扫码预分配工位存量")
private Integer autoResCount;
/**
* 替换码
*/
@TableField(value = "replaceCode")
@ApiModelProperty(value="替换码")
private String replaceCode;
private static final long serialVersionUID = 1L;
public static final String COL_ID = "id";
public static final String COL_ORDERIDFK = "orderIdFk";
public static final String COL_RELID = "relId";
public static final String COL_THRCODE = "thrCode";
public static final String COL_YBBM = "ybbm";
public static final String COL_PAYFEECODE = "payFeeCode";
public static final String COL_SPTM = "sptm";
public static final String COL_CPMCTYMC = "cpmctymc";
public static final String COL_NAMECODE = "nameCode";
public static final String COL_BATCHNO = "batchNo";
public static final String COL_PRODUCTDATE = "productDate";
public static final String COL_EXPIREDATE = "expireDate";
public static final String COL_COUNT = "count";
public static final String COL_UNTAGCOUNT = "unTagCount";
public static final String COL_ACTCOUNT = "actCount";
public static final String COL_SCANCOUNT = "scanCount";
public static final String COL_SCANACTCOUNT = "scanActCount";
public static final String COL_GGXH = "ggxh";
public static final String COL_MEASUREUNIT = "measureUnit";
public static final String COL_TAGSTATUS = "tagStatus";
public static final String COL_TAGMSG = "tagMsg";
public static final String COL_AUTOTAGSTATUS = "autoTagStatus";
public static final String COL_REMARK = "remark";
public static final String COL_CREATETIME = "createTime";
public static final String COL_UPDATETIME = "updateTime";
public static final String COL_REMARK1 = "remark1";
public static final String COL_REMARK2 = "remark2";
public static final String COL_REMARK3 = "remark3";
public static final String COL_REMARK4 = "remark4";
public static final String COL_REMARK5 = "remark5";
public static final String COL_REMARK6 = "remark6";
public static final String COL_REMARK7 = "remark7";
public static final String COL_REMARK8 = "remark8";
public static final String COL_REMARK9 = "remark9";
public static final String COL_REMARK10 = "remark10";
public static final String COL_REMARK11 = "remark11";
public static final String COL_REMARK12 = "remark12";
public static final String COL_REMARK13 = "remark13";
public static final String COL_REMARK14 = "remark14";
public static final String COL_REMARK15 = "remark15";
public static final String COL_AUTORESCOUNT = "autoResCount";
public static final String COL_REPLACECODE = "replaceCode";
}