hdy
2024-07-10 a4362dfe3e0e9c6fad426685da0065455799d018
提交 | 用户 | 时间
0cceb6 1 package com.jcdm.main.da.tileMatchRules.domain;
Y 2
3 import org.apache.commons.lang3.builder.ToStringBuilder;
4 import org.apache.commons.lang3.builder.ToStringStyle;
5 import com.jcdm.common.annotation.Excel;
6 import com.jcdm.common.core.domain.BaseEntity;
7
8 /**
9  * 配瓦规则对象 da_tile_match_rules
10  * 
11  * @author jiang
12  * @date 2024-01-24
13  */
14 public class DaTileMatchRules extends BaseEntity
15 {
16     private static final long serialVersionUID = 1L;
17
18     /** 主键id */
19     private Long id;
20
21     /** 产品系列 */
22     @Excel(name = "产品系列")
23     private String productSeries;
24
25     /** 扫码对象1 */
26     @Excel(name = "扫码对象1")
27     private String scanObject1;
28
29     /** 扫码对象2 */
30     @Excel(name = "扫码对象2")
31     private String scanObject2;
32
33     /** 轴名称 */
34     @Excel(name = "轴名称")
35     private String axisName;
36
37     /** 颈名称 */
38     @Excel(name = "颈名称")
39     private String neckName;
40
41     /** 瓦名称 */
42     @Excel(name = "瓦名称")
43     private String tileName;
44
45     /** 轴参数数位置 */
46     @Excel(name = "轴参数数位置")
47     private Long axisParameterNoPosition;
48
49     /** 颈参数数位置 */
50     @Excel(name = "颈参数数位置")
51     private Long neckParameterPosition;
52
53     /** 轴值 */
54     @Excel(name = "轴值")
55     private String axisValue;
56
57     /** 颈值 */
58     @Excel(name = "颈值")
59     private String neckValue;
60
61     /** 瓦颜色 */
62     @Excel(name = "瓦颜色")
63     private String tileColor;
64
65     /** 创建用户 */
66     @Excel(name = "创建用户")
67     private String createUser;
68
69     /** 更改用户 */
70     @Excel(name = "更改用户")
71     private String updateUser;
72
73     /** 状态(1合格、2不合格) */
74     @Excel(name = "状态", readConverterExp = "1=合格、2不合格")
75     private String state;
76
77     public void setId(Long id) 
78     {
79         this.id = id;
80     }
81
82     public Long getId() 
83     {
84         return id;
85     }
86     public void setProductSeries(String productSeries) 
87     {
88         this.productSeries = productSeries;
89     }
90
91     public String getProductSeries() 
92     {
93         return productSeries;
94     }
95     public void setScanObject1(String scanObject1) 
96     {
97         this.scanObject1 = scanObject1;
98     }
99
100     public String getScanObject1() 
101     {
102         return scanObject1;
103     }
104     public void setScanObject2(String scanObject2) 
105     {
106         this.scanObject2 = scanObject2;
107     }
108
109     public String getScanObject2() 
110     {
111         return scanObject2;
112     }
113     public void setAxisName(String axisName) 
114     {
115         this.axisName = axisName;
116     }
117
118     public String getAxisName() 
119     {
120         return axisName;
121     }
122     public void setNeckName(String neckName) 
123     {
124         this.neckName = neckName;
125     }
126
127     public String getNeckName() 
128     {
129         return neckName;
130     }
131     public void setTileName(String tileName) 
132     {
133         this.tileName = tileName;
134     }
135
136     public String getTileName() 
137     {
138         return tileName;
139     }
140     public void setAxisParameterNoPosition(Long axisParameterNoPosition) 
141     {
142         this.axisParameterNoPosition = axisParameterNoPosition;
143     }
144
145     public Long getAxisParameterNoPosition() 
146     {
147         return axisParameterNoPosition;
148     }
149     public void setNeckParameterPosition(Long neckParameterPosition) 
150     {
151         this.neckParameterPosition = neckParameterPosition;
152     }
153
154     public Long getNeckParameterPosition() 
155     {
156         return neckParameterPosition;
157     }
158     public void setAxisValue(String axisValue) 
159     {
160         this.axisValue = axisValue;
161     }
162
163     public String getAxisValue() 
164     {
165         return axisValue;
166     }
167     public void setNeckValue(String neckValue) 
168     {
169         this.neckValue = neckValue;
170     }
171
172     public String getNeckValue() 
173     {
174         return neckValue;
175     }
176     public void setTileColor(String tileColor) 
177     {
178         this.tileColor = tileColor;
179     }
180
181     public String getTileColor() 
182     {
183         return tileColor;
184     }
185     public void setCreateUser(String createUser) 
186     {
187         this.createUser = createUser;
188     }
189
190     public String getCreateUser() 
191     {
192         return createUser;
193     }
194     public void setUpdateUser(String updateUser) 
195     {
196         this.updateUser = updateUser;
197     }
198
199     public String getUpdateUser() 
200     {
201         return updateUser;
202     }
203     public void setState(String state) 
204     {
205         this.state = state;
206     }
207
208     public String getState() 
209     {
210         return state;
211     }
212
213     @Override
214     public String toString() {
215         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
216             .append("id", getId())
217             .append("productSeries", getProductSeries())
218             .append("scanObject1", getScanObject1())
219             .append("scanObject2", getScanObject2())
220             .append("axisName", getAxisName())
221             .append("neckName", getNeckName())
222             .append("tileName", getTileName())
223             .append("axisParameterNoPosition", getAxisParameterNoPosition())
224             .append("neckParameterPosition", getNeckParameterPosition())
225             .append("axisValue", getAxisValue())
226             .append("neckValue", getNeckValue())
227             .append("tileColor", getTileColor())
228             .append("createUser", getCreateUser())
229             .append("createTime", getCreateTime())
230             .append("updateUser", getUpdateUser())
231             .append("updateTime", getUpdateTime())
232             .append("state", getState())
233             .toString();
234     }
235 }