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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.ruoyi.production.bean.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
@Data
@Schema(name = "ProductionAccountVo", description = "生产核算分页返回对象")
public class ProductionAccountVo {
 
    @Schema(description = "客户合同号")
    private String customerContractNo;
 
    @Schema(description = "项目名称")
    private String projectName;
 
    @Schema(description = "客户名称")
    private String customerName;
 
    @Schema(description = "产品大类")
    private String productCategory;
 
    @Schema(description = "规格型号")
    private String specificationModel;
 
    @Schema(description = "单位")
    private String unit;
 
    @Schema(description = "生产人ID")
    private Long schedulingUserId;
 
    @Schema(description = "生产人名称")
    private String schedulingUserName;
 
    @Schema(description = "工资")
    private BigDecimal wages;
 
    @Schema(description = "生产数量")
    private BigDecimal finishedNum;
 
    @Schema(description = "工时定额")
    private BigDecimal workHours;
 
    @Schema(description = "工序")
    private String process;
 
    @Schema(description = "生产日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate schedulingDate;
 
    @Schema(description = "生产月份(yyyy-MM)")
    private String schedulingMonth;
}