sfd
2025-05-20 a18b8e051947411bab76769efc20b4814d7e0674
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
package com.aps.core.domain;
 
import com.aps.common.core.web.domain.BaseEntity;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.aps.common.core.annotation.Excel;
import org.springframework.data.annotation.Id;
 
import java.math.BigDecimal;
import java.sql.Timestamp;
 
/**
 * 管路手工气体工单数据对象 aps_gas_pipeline_mo
 * 
 * @author ruoyi
 * @date 2025-05-19
 */
@Schema(description = "管路手工气体工单数据实体类")
@Data
public class ApsGasPipelineMo extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    @Id
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    /** ID */
    @Schema(description = "ID")
    private Long id;
 
    /** 工单号 */
    @Excel(name = "工单号")
    @Schema(description = "工单号")
    private String mo;
 
    /** 生产基地 */
    @Excel(name = "生产基地")
    @Schema(description = "生产基地")
    private String factory;
 
    /** 料号 */
    @Excel(name = "料号")
    @Schema(description = "料号")
    private String materialCode;
 
    /** 计划完工日期 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "计划完工日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    @Schema(description = "计划完工日期")
    private Timestamp planEnd;
 
    /** 数量 */
    @Excel(name = "数量")
    @Schema(description = "数量")
    private BigDecimal quantity;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
 
    public void setMo(String mo) 
    {
        this.mo = mo;
    }
 
    public String getMo() 
    {
        return mo;
    }
 
    public void setFactory(String factory) 
    {
        this.factory = factory;
    }
 
    public String getFactory() 
    {
        return factory;
    }
 
    public void setMaterialCode(String materialCode) 
    {
        this.materialCode = materialCode;
    }
 
    public String getMaterialCode() 
    {
        return materialCode;
    }
 
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("mo", getMo())
            .append("factory", getFactory())
            .append("materialCode", getMaterialCode())
            .append("planEnd", getPlanEnd())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .toString();
    }
}