gongchunyi
5 天以前 88c83650ee2e7769768ac19eeaf3af23537bd861
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package com.ruoyi.ProdDemand.pojo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
/**
 * <br>
 * 销售生产需求-明细表
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/09 16:58
 */
@Data
public class ProdDemandDetail {
 
    /**
     * 自增主键
     */
    private Long id;
 
    /**
     * 租户编号
     */
    private String tenantId;
 
    /**
     * 主表单实例ID
     */
    private String formInstanceId;
 
    /**
     * 物料编码
     */
    private String materialCode;
 
    /**
     * 物料分类
     */
    private String materialCategory;
 
    /**
     * 规格描述
     */
    private String specDesc;
 
    /**
     * 等级/类型
     */
    private String gradeType;
 
    /**
     * 长度
     */
    private BigDecimal length;
 
    /**
     * 宽度
     */
    private BigDecimal width;
 
    /**
     * 厚度
     */
    private BigDecimal thickness;
 
    /**
     * 数量
     */
    private Integer quantity;
 
    /**
     * 总体积
     */
    private BigDecimal volume;
 
    /**
     * 时间区间
     */
    private String dateRange;
 
    /**
     * 关联单据
     */
    private String associationReceipt;
 
    /**
     * 创建者
     */
    private Long createUser;
 
    /**
     * 创建时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime createTime;
 
    /**
     * 更新者
     */
    private Long updateUser;
 
    /**
     * 更新时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime updateTime;
 
    /**
     * 备注
     */
    private String remark;
}