| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.thhy.general.annotations.Excel; |
| | | import com.thhy.general.annotations.Idkey; |
| | | import lombok.Data; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | |
| | | /** |
| | | * |
| | | */ |
| | | @Idkey("id") |
| | | private String id; |
| | | |
| | | /** |
| | |
| | | //预埋件名称 |
| | | private String embedmentName; |
| | | //预埋件规格 |
| | | @Excel(sort = 1,title = "规格型号") |
| | | private String embedmentModel; |
| | | |
| | | @Excel(sort = 1,title = "预埋件名称") |
| | | @Excel(sort = 0,title = "预埋件名称") |
| | | private String embedmentNameAndModel; |
| | | |
| | | public String getEmbedmentNameAndModel() { |
| | |
| | | /** |
| | | * 出库量/入库量 |
| | | */ |
| | | @Excel(sort = 2,title = "数量") |
| | | @Excel(sort = 2,title = "入库数量") |
| | | private Integer changeStock; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 入库时间 |
| | | */ |
| | | @Excel(sort = 6,title = "入库时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private String createTime; |
| | | |