| 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) | 
|     @TableField("auto_id") | 
|     private Integer AutoId; | 
|   | 
|     @ApiModelProperty(value = "") | 
|     @TableId(value = "bill_no", type = IdType.INPUT) | 
|     @TableField("bill_no") | 
|     private String BillNo; | 
|   | 
|     /** | 
|      * StockIn:采购入库 | 
|      * ProductIn:成品入库单 | 
|      * ItemMoveIn:调拨入库 | 
|      * ItemSwitchIn:形态转换入库 | 
|      * CheckMoreIn:盘盈入库单 | 
|      */ | 
| //    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") | 
|     @TableField("bill_date") | 
|     private Date BillDate; | 
|   | 
|     @TableField("io_kind_id") | 
|     private String IoKindID; | 
|   | 
|     @TableField("io_kind_name") | 
|     private String ioKindName; | 
|   | 
|     /** | 
|      * 供应商、部门ID | 
|      */ | 
|     @ApiModelProperty(value = "供应商、部门ID") | 
|     @TableField("object_id") | 
|     private String ObjectId; | 
|   | 
|     /** | 
|      * 供应商、部门名称 | 
|      */ | 
|     @TableField("object_name") | 
|     @ApiModelProperty(value = "供应商、部门名称") | 
|     private String ObjectName; | 
|   | 
|     @ApiModelProperty(value = "") | 
|     @TableField("remark") | 
|     private String remark; | 
|   | 
|     @TableField("ware_id") | 
|     private String wareId; | 
|   | 
|     @TableField("ware_name") | 
|     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("make_date") | 
|     private Date MakeDate; | 
|   | 
|     @ApiModelProperty(value = "") | 
|     @TableField("LKName") | 
|     private String LKName; | 
|   | 
|     /** | 
|      * | 
|      */ | 
|     @TableField("fact_area") | 
|     private String FactArea; | 
|   | 
|   | 
| } |