sfd
2025-05-22 e5a96bc789ca0252e31fd2e01bec5e471a02c0d6
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package com.aps.job.domain;
 
import com.aps.common.core.annotation.Excel;
import com.aps.common.core.web.domain.BaseEntity;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 物料库存管理对象 aps_material_storage_management_job
 * 
 * @author hjy
 * @date 2025-05-08
 */
@Schema(description = "物料库存管理实体类")
public class ApsMaterialStorageManagementJob extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    @Schema(description = "id")
    private Long id;
 
    /** 料号 */
    @Excel(name = "料号")
    @Schema(description = "料号")
    private String itemNumber;
 
    /** 数量 */
    @Excel(name = "数量")
    @Schema(description = "数量")
    private BigDecimal num;
 
    /** 适用工厂 */
    @Excel(name = "适用工厂")
    @Schema(description = "适用工厂")
    private String applicableFactories;
 
    /** 集成日期 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "集成日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    @Schema(description = "集成日期")
    private Date integrationDate;
 
    /** 刷新日期 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "刷新日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    @Schema(description = "刷新日期")
    private Date refreshDate;
 
    /** 剩余库存 */
    @Excel(name = "剩余库存")
    @Schema(description = "剩余库存")
    private BigDecimal remainderStock;
 
    /** 修改版本 */
    @Excel(name = "修改版本")
    @Schema(description = "修改版本")
    private Double version;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
 
    public void setItemNumber(String itemNumber) 
    {
        this.itemNumber = itemNumber;
    }
 
    public String getItemNumber() 
    {
        return itemNumber;
    }
 
    public void setNum(BigDecimal num) 
    {
        this.num = num;
    }
 
    public BigDecimal getNum() 
    {
        return num;
    }
 
    public void setApplicableFactories(String applicableFactories) 
    {
        this.applicableFactories = applicableFactories;
    }
 
    public String getApplicableFactories() 
    {
        return applicableFactories;
    }
 
    public void setIntegrationDate(Date integrationDate) 
    {
        this.integrationDate = integrationDate;
    }
 
    public Date getIntegrationDate() 
    {
        return integrationDate;
    }
 
    public void setRefreshDate(Date refreshDate) 
    {
        this.refreshDate = refreshDate;
    }
 
    public Date getRefreshDate() 
    {
        return refreshDate;
    }
 
    public void setRemainderStock(BigDecimal remainderStock) 
    {
        this.remainderStock = remainderStock;
    }
 
    public BigDecimal getRemainderStock() 
    {
        return remainderStock;
    }
 
    public void setVersion(Double version) 
    {
        this.version = version;
    }
 
    public Double getVersion() 
    {
        return version;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("itemNumber", getItemNumber())
            .append("num", getNum())
            .append("applicableFactories", getApplicableFactories())
            .append("integrationDate", getIntegrationDate())
            .append("refreshDate", getRefreshDate())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("remainderStock", getRemainderStock())
            .append("version", getVersion())
            .toString();
    }
}