New file |
| | |
| | | package com.example.erp.dto.mm; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.example.erp.entity.mm.FinishedOperateLog; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class FinishedOperateLogDTO{ |
| | | @ExcelProperty("编号") |
| | | private Long id; |
| | | @ExcelProperty("操作单号") |
| | | private String operationOrderNumber; |
| | | @ExcelProperty("销售单号") |
| | | private String orderId; |
| | | @ExcelProperty("订单序号") |
| | | private Integer operationNumber; |
| | | @ExcelProperty("类型") |
| | | private String operateType; |
| | | @ExcelProperty("数量") |
| | | private Integer quantity; |
| | | @ExcelProperty("产品Id") |
| | | private Integer productId; |
| | | @ExcelProperty("产品") |
| | | private String productName; |
| | | @ExcelProperty("宽") |
| | | private Double width; |
| | | @ExcelProperty("高") |
| | | private Double height; |
| | | @ExcelProperty("调拨销售单号") |
| | | private String staterOperationOrderNumber; |
| | | @ExcelProperty("调拨序号") |
| | | private String endOperationOrderNumber; |
| | | @ExcelProperty("制单人") |
| | | private String operator; |
| | | @ExcelProperty("制单日期") |
| | | private LocalDate operateTime; |
| | | @ExcelProperty("流程卡号") |
| | | private String processId; |
| | | @ExcelProperty("领出类型") |
| | | private String type; |
| | | @ExcelProperty("审核人") |
| | | private String reviewed; |
| | | @ExcelProperty("审核日期") |
| | | private LocalDate reviewedTime; |
| | | @ExcelProperty("备注") |
| | | private String remarks; |
| | | |
| | | |
| | | |
| | | |
| | | } |