New file |
| | |
| | | package com.example.erp.entity.pp; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.example.erp.entity.sd.BasicData; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class Report { |
| | | @TableId(type = IdType.AUTO) |
| | | //工序 |
| | | private String process; |
| | | //流程卡号 |
| | | private String processId; |
| | | //客户名称 |
| | | private String customerName; |
| | | //项目名称 |
| | | private String project; |
| | | //销售单号 |
| | | private String orderId; |
| | | //批次 |
| | | private String batch; |
| | | //序号 |
| | | private String orderNumber; |
| | | //小片顺序 |
| | | private String technologyNumber; |
| | | //形状 |
| | | private String shape; |
| | | //工艺流程 |
| | | private String technologyFlow; |
| | | //订单数 |
| | | private String orderNum; |
| | | //宽 |
| | | private String childWidth; |
| | | //高 |
| | | private String childHeight; |
| | | //库存数 |
| | | private String stockNum; |
| | | //库存面积 |
| | | private String stockArea; |
| | | //产品名称 |
| | | private String productName; |
| | | //弯钢半径 |
| | | private String bendRadius; |
| | | |
| | | //单片面积 |
| | | private String childArea; |
| | | //实际面积 |
| | | private String actualArea; |
| | | //完成数量 |
| | | private String completeNum; |
| | | //完成面积 |
| | | private String completeArea; |
| | | //未完数量 |
| | | private String incompleteNum; |
| | | //未完面积 |
| | | private String incompleteArea; |
| | | } |