| | |
| | | package com.yuanchu.mom.pojo; |
| | | |
| | | import cn.hutool.core.date.DateTime; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | private Integer number; |
| | | |
| | | /** |
| | | * 供应商 |
| | | */ |
| | | private String supplier; |
| | | |
| | | /** |
| | | * 检验状态 0:未检验;1:已检验 |
| | | */ |
| | | private Integer insState; |
| | |
| | | */ |
| | | private String userName; |
| | | |
| | | /** |
| | | * IFS中该物料的其他信息 |
| | | */ |
| | | private String message; |
| | | |
| | | @ApiModelProperty(value = "逻辑删除 正常>=1,删除<=0", hidden = true) |
| | | @TableLogic(value = "1", delval = "0") |
| | | private Integer state; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 来料日期 |
| | | */ |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date formTime; |
| | | |
| | | @TableField(exist = false) |