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
60
61
62
63
64
65
66
67
package com.ruoyi.production.bean.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.LocalDateTime;
 
@Data
public class ProductionProductMainDto {
    @Schema(description = "主键ID")
    private Long id;
    @Schema(description = "产品编号")
    private String productNo;
    @Schema(description = "用户ID")
    private Long userId;
    @Schema(description = "用户名称")
    private String userName;
    @Schema(description = "产品工艺路线明细ID")
    private Long productProcessRouteItemId;
    @Schema(description = "工单ID")
    private Long workOrderId;
    @Schema(description = "生产工序任务ID")
    private Long productionOperationTaskId;
    @Schema(description = "状态")
    private Integer status;
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
    @Schema(description = "更新时间")
    private LocalDateTime updateTime;
    @Schema(description = "租户ID")
    private Long tenantId;
    @Schema(description = "创建人")
    private Integer createUser;
    @Schema(description = "更新人")
    private Integer updateUser;
    @Schema(description = "部门ID")
    private Long deptId;
 
    @Schema(description = "工单编号")
    private String workOrderNo;
    @Schema(description = "工单状态")
    private String workOrderStatus;
    @Schema(description = "昵称")
    private String nickName;
    @Schema(description = "数量")
    private BigDecimal quantity;
    @Schema(description = "报废数量")
    private BigDecimal scrapQty;
    @Schema(description = "产品名称")
    private String productName;
    @Schema(description = "产品型号名称")
    private String productModelName;
    @Schema(description = "单位")
    private String unit;
    @Schema(description = "销售合同编号")
    private String salesContractNo;
    @Schema(description = "排产日期")
    private LocalDate schedulingDate;
    @Schema(description = "排产人员名称")
    private String schedulingUserName;
    @Schema(description = "客户名称")
    private String customerName;
    @Schema(description = "工序")
    private String process;
}