| New file |
| | |
| | | package com.example.erp.dto.pp; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.example.erp.entity.sd.Order; |
| | | import com.example.erp.entity.sd.OrderDetail; |
| | | import com.example.erp.entity.sd.OrderGlassDetail; |
| | | import com.example.erp.entity.sd.Product; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class FlowCardDTO { |
| | | @TableId(type = IdType.AUTO) |
| | | |
| | | //销售单号 |
| | | @ExcelProperty("销售单号") |
| | | private String orderId; |
| | | //流程卡号 |
| | | @ExcelProperty("流程卡号") |
| | | private String processId; |
| | | //客户名称 |
| | | @ExcelProperty("客户名称") |
| | | private String customerName; |
| | | //批次 |
| | | @ExcelProperty("批次") |
| | | private String batch; |
| | | @ExcelProperty("产品ID") |
| | | private String productId; |
| | | @ExcelProperty("产品名称") |
| | | private String productName; |
| | | @ExcelProperty("项目名称") |
| | | private String project; |
| | | @ExcelProperty("数量") |
| | | private Integer quantity; |
| | | @ExcelProperty("面积") |
| | | private Double computeGrossArea; |
| | | @ExcelProperty("分架员") |
| | | private String founder; |
| | | @ExcelProperty("加工要求") |
| | | private String processingNote; |
| | | @ExcelProperty("排版状态") |
| | | private String layoutStatus; |
| | | @ExcelProperty("合并状态") |
| | | private Integer merge; |
| | | @ExcelProperty("架号") |
| | | private String rack; |
| | | } |