guoyujie
2 天以前 c4b9a339caff12e95f61c3d5dc950aafcc8c566c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;
 
}