| | |
| | | package com.thhy.materials.modules.biz.suMaterialWarehouse.entity; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | |
| | | @Builder |
| | | public class SuMaterialWarehouseEntity { |
| | | |
| | | private Integer id; |
| | | private String id; |
| | | |
| | | private Integer tableNum;//桌号 |
| | | |
| | | private String nameOfOrigin;//场地名称 |
| | | private String materialName;//物料名称 |
| | | |
| | | private Integer incomingQuantity;//进厂数量 |
| | |
| | | |
| | | private Integer status;//检验状态 |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date inspectionDate;//检验日期 |
| | | |
| | | private String reportNumber;//报告编号 |
| | |
| | | |
| | | private String companyId; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date inTime;//进厂日期 |
| | | |
| | | private Integer type;//入库方式 1手动 2自动 |