|
|
@@ -151,6 +151,14 @@ public class EquipmentLedger extends BaseEntity {
|
|
151
|
151
|
@TableField(exist = false)
|
|
152
|
152
|
private List<BaseAttachment> baseAttachmentList;
|
|
153
|
153
|
|
|
|
154
|
+ /** 查询定/自检小组人员ID*/
|
|
|
155
|
+ @TableField(exist = false)
|
|
|
156
|
+ private String inspectionTeamUserId;
|
|
|
157
|
+
|
|
|
158
|
+ /** 查询定/自检小组人员ID名称*/
|
|
|
159
|
+ @TableField(exist = false)
|
|
|
160
|
+ private String inspectionTeamUserName;
|
|
|
161
|
+
|
|
154
|
162
|
public void setTenantId(String tenantId) {
|
|
155
|
163
|
this.tenantId = tenantId;
|
|
156
|
164
|
}
|
|
|
@@ -383,6 +391,22 @@ public class EquipmentLedger extends BaseEntity {
|
|
383
|
391
|
this.baseAttachmentList = baseAttachmentList;
|
|
384
|
392
|
}
|
|
385
|
393
|
|
|
|
394
|
+ public String getInspectionTeamUserId() {
|
|
|
395
|
+ return inspectionTeamUserId;
|
|
|
396
|
+ }
|
|
|
397
|
+
|
|
|
398
|
+ public void setInspectionTeamUserId(String inspectionTeamUserId) {
|
|
|
399
|
+ this.inspectionTeamUserId = inspectionTeamUserId;
|
|
|
400
|
+ }
|
|
|
401
|
+
|
|
|
402
|
+ public String getInspectionTeamUserName() {
|
|
|
403
|
+ return inspectionTeamUserName;
|
|
|
404
|
+ }
|
|
|
405
|
+
|
|
|
406
|
+ public void setInspectionTeamUserName(String inspectionTeamUserName) {
|
|
|
407
|
+ this.inspectionTeamUserName = inspectionTeamUserName;
|
|
|
408
|
+ }
|
|
|
409
|
+
|
|
386
|
410
|
@Override
|
|
387
|
411
|
public String toString() {
|
|
388
|
412
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|