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 = "auto_id", type = IdType.AUTO) 
 | 
    private Integer AutoId; 
 | 
  
 | 
    @ApiModelProperty(value = "") 
 | 
    @TableId(value = "bill_no", type = IdType.INPUT) 
 | 
    @TableField("bill_no") 
 | 
    private String BillNo; 
 | 
  
 | 
  
 | 
    @TableField("bill_date") 
 | 
//    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") 
 | 
    private Date BillDate; 
 | 
  
 | 
    /** 
 | 
     * SendMatOut:发料出库 
 | 
     * OtherOut:其它出库单 
 | 
     * ItemMoveOut:调拨出库 
 | 
     * ItemSwitchOut:形态转换出库 
 | 
     * CheckLossOut:盘盈出库单 
 | 
     */ 
 | 
    @ApiModelProperty(value = "SendMatOut:发料出库 ") 
 | 
    @TableField("io_kind_id") 
 | 
    private String IoKindID; 
 | 
  
 | 
    @TableField("io_kind_name") 
 | 
    private String ioKindName; 
 | 
  
 | 
    /** 
 | 
     * 部门ID 
 | 
     */ 
 | 
    @ApiModelProperty(value = "部门ID") 
 | 
    @TableField("object_id") 
 | 
    private String ObjectId; 
 | 
  
 | 
    /** 
 | 
     * 部门名称 
 | 
     */ 
 | 
    @ApiModelProperty(value = "部门名称") 
 | 
    @TableField("object_name") 
 | 
    private String ObjectName; 
 | 
  
 | 
    @ApiModelProperty(value = "") 
 | 
    @TableField("remark") 
 | 
    private String remark; 
 | 
  
 | 
    @TableField("ware_id") 
 | 
    private String wareId; 
 | 
  
 | 
    @TableField("ware_id") 
 | 
    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; 
 | 
  
 | 
} 
 |