New file |
| | |
| | | package com.example.erp.entity.pp; |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | @Data |
| | | public class WorkprogressMonthlySettlement { |
| | | //自增ID |
| | | private Integer id; |
| | | //产品编号 |
| | | private String prodId; |
| | | //产品名称 |
| | | private String productName; |
| | | //加工要求 |
| | | private String processingNote; |
| | | //工序 |
| | | private String process; |
| | | //宽 |
| | | private Double width; |
| | | //高 |
| | | private Double height; |
| | | //厚度 |
| | | private Double thickness; |
| | | //单价 |
| | | private Double price; |
| | | //总金额 |
| | | private Double grossAmount; |
| | | //月结日期 |
| | | private LocalDate monthlyClosingDate; |
| | | //建立时间 |
| | | private LocalDate createTime; |
| | | //修改时间 |
| | | private LocalDate updateTime; |
| | | |
| | | } |