liyong
5 小时以前 1ca5584d7e3200a9af65a099bd26d3593e2ba702
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
57
58
59
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 = "production account page result")
public class ProductionAccountVo {
 
    @Schema(description = "customer contract no")
    private String customerContractNo;
 
    @Schema(description = "project name")
    private String projectName;
 
    @Schema(description = "customer name")
    private String customerName;
 
    @Schema(description = "product category")
    private String productCategory;
 
    @Schema(description = "specification model")
    private String specificationModel;
 
    @Schema(description = "unit")
    private String unit;
 
    @Schema(description = "scheduling user id")
    private Long schedulingUserId;
 
    @Schema(description = "scheduling user name")
    private String schedulingUserName;
 
    @Schema(description = "wages")
    private BigDecimal wages;
 
    @Schema(description = "finished quantity")
    private BigDecimal finishedNum;
 
    @Schema(description = "salary quota")
    private BigDecimal workHours;
 
    @Schema(description = "output rate")
    private String outputRate;
 
    @Schema(description = "process")
    private String process;
 
    @Schema(description = "scheduling date")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate schedulingDate;
 
    @Schema(description = "scheduling month(yyyy-MM)")
    private String schedulingMonth;
}