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.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; @Data @NoArgsConstructor @AllArgsConstructor @TableName("erp_OutHedTB") public class OutHedTB 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; @TableField("BillDate") // @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") private Date BillDate; /** * SendMatOut:发料出库 * OtherOut:其它出库单 * ItemMoveOut:调拨出库 * ItemSwitchOut:形态转换出库 * CheckLossOut:盘盈出库单 */ @ApiModelProperty(value = "SendMatOut:发料出库 ") @TableField("IoKindID") private String IoKindID; @TableField("IoKindName") private String ioKindName; /** * 部门ID */ @ApiModelProperty(value = "部门ID") @TableField("ObjectId") private String ObjectId; /** * 部门名称 */ @ApiModelProperty(value = "部门名称") @TableField("ObjectName") 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; }