hongjli
2025-05-23 48f5220bc5eb826402f43e440dc34867368ff17c
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
package com.aps.core.domain;
 
import com.aps.common.core.annotation.Excel;
import com.aps.common.core.web.domain.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Builder;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.math.BigDecimal;
 
 
/**
 * 气柜管路物料用量对象 aps_gas_material_usage
 *
 * @author zhl
 * @date 2025-04-25
 */
@EqualsAndHashCode(callSuper = true)
@Data
@Schema(description = "气柜管路物料用量实体类")
public class ApsGasMaterialUsage extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * 数据主键
     */
    @Schema(description ="数据主键", type = "String")
    private Long id;
 
    /**
     * 料号
     */
    @Excel(name = "料号")
    @Schema(description ="料号", type = "String")
    private String itemNumber;
 
    /**
     * 图号
     */
    @Excel(name = "图号")
    @Schema(description ="图号", type = "String")
    private String drawingNo;
 
    /**
     * 版本
     */
    @Excel(name = "版本")
    @Schema(description ="版本", type = "String")
    private String version;
 
    /**
     * 工序名称
     */
    @Excel(name = "工序名称")
    @Schema(description ="工序名称", type = "String")
    private String processName;
 
    /**
     * 标准用量
     */
    @Excel(name = "标准用量")
    @Schema(description ="标准用量", type = "String")
    private BigDecimal standardAmount;
 
    /**
     * 账套编码
     */
    @Excel(name = "账套编码")
    @Schema(description ="账套编码", type = "String")
    private String orgCode;
 
    /**
     * 删除标志(0代表存在 1代表删除)
     */
    @Schema(description ="删除标志(0代表存在 1代表删除)", type = "String")
    private String delFlag;
}