zhanghl
2025-04-29 ec8cf418f6dc3958aa7b5f524a7bf8f6edf62e07
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
package com.aps.core.domain;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.aps.common.core.annotation.Excel;
import com.aps.common.core.web.domain.BaseEntity;
 
import java.util.Date;
 
/**
 * 专业固定周期管理对象 aps_professional_fixed_cycle_management
 * 
 * @author ruoyi
 * @date 2025-04-21
 */
public class ApsProfessionalFixedCycleManagement extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    private String id;
 
    /** 料号 */
    @Excel(name = "料号")
    private String itemNumber;
 
    /** 专业描述 */
    @Excel(name = "专业描述")
    private String professionalDescription;
 
    /** 专业 */
    @Excel(name = "专业")
    private String professional;
 
    /** 专业固定周期 */
    @Excel(name = "专业固定周期")
    private String professionalFixedCycle;
 
    /** 集成日期 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "集成日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date integrationDate;
 
    /** 适用工厂 */
    @Excel(name = "适用工厂")
    private String applicableFactories;
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
 
    public void setItemNumber(String itemNumber) 
    {
        this.itemNumber = itemNumber;
    }
 
    public String getItemNumber() 
    {
        return itemNumber;
    }
 
    public void setProfessionalDescription(String professionalDescription) 
    {
        this.professionalDescription = professionalDescription;
    }
 
    public String getProfessionalDescription() 
    {
        return professionalDescription;
    }
 
    public void setProfessional(String professional) 
    {
        this.professional = professional;
    }
 
    public String getProfessional() 
    {
        return professional;
    }
 
    public void setProfessionalFixedCycle(String professionalFixedCycle) 
    {
        this.professionalFixedCycle = professionalFixedCycle;
    }
 
    public String getProfessionalFixedCycle() 
    {
        return professionalFixedCycle;
    }
 
    public void setIntegrationDate(Date integrationDate)
    {
        this.integrationDate = integrationDate;
    }
 
    public Date getIntegrationDate()
    {
        return integrationDate;
    }
 
    public void setApplicableFactories(String applicableFactories) 
    {
        this.applicableFactories = applicableFactories;
    }
 
    public String getApplicableFactories() 
    {
        return applicableFactories;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("itemNumber", getItemNumber())
            .append("professionalDescription", getProfessionalDescription())
            .append("professional", getProfessional())
            .append("professionalFixedCycle", getProfessionalFixedCycle())
            .append("integrationDate", getIntegrationDate())
            .append("applicableFactories", getApplicableFactories())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .toString();
    }
}