自动化立体仓库 - WMS系统
zhangchao
2024-07-20 48db618606f0f0cafd1ce795f8bf26a0bcec2581
src/main/java/com/zy/third/erp/entity/InHedTB.java
New file
@@ -0,0 +1,98 @@
package com.zy.third.erp.entity;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
@Data
@TableName("erp_InHedTB")
public class InHedTB implements Serializable {
    private static final long serialVersionUID = 1L;
    @TableId(value = "AutoId", type = IdType.AUTO)
    private Integer AutoId;
    @ApiModelProperty(value = "")
    @TableId(value = "BillNo", type = IdType.INPUT)
    @TableField("BillNo")
    private String BillNo;
    /**
     * StockIn:采购入库
     * ProductIn:成品入库单
     * ItemMoveIn:调拨入库
     * ItemSwitchIn:形态转换入库
     * CheckMoreIn:盘盈入库单
     */
//    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("BillDate")
    private Date BillDate;
    @TableField("IoKindID")
    private String IoKindID;
    @TableField("IoKindName")
    private String ioKindName;
    /**
     * 供应商、部门ID
     */
    @ApiModelProperty(value = "供应商、部门ID")
    @TableField("ObjectId")
    private String ObjectId;
    /**
     * 供应商、部门名称
     */
    @TableField("ObjectName")
    @ApiModelProperty(value = "供应商、部门名称")
    private String ObjectName;
    @ApiModelProperty(value = "")
    @TableField("Remark")
    private String remark;
    @TableField("WareId")
    private String wareId;
    @TableField("WareName")
    private String wareName;
    @ApiModelProperty(value = "")
    @TableField("Temp1")
    private String Temp1;
    @ApiModelProperty(value = "")
    @TableField("Temp2")
    private String Temp2;
    @ApiModelProperty(value = "")
    @TableField("Temp3")
    private String Temp3;
    @ApiModelProperty(value = "")
//    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("MakeDate")
    private Date MakeDate;
    @ApiModelProperty(value = "")
    @TableField("LKName")
    private String LKName;
    /**
     *
     */
    @TableField("FactArea")
    private String FactArea;
}