|
|
@ -25,7 +25,10 @@ import java.io.Serializable;
|
|
|
|
@Table(name = "MES_REPAIR_RECORD_EXT", indexes = {
|
|
|
|
@Table(name = "MES_REPAIR_RECORD_EXT", indexes = {
|
|
|
|
@Index(columnList = "ORGANIZE_CODE_EXT"),
|
|
|
|
@Index(columnList = "ORGANIZE_CODE_EXT"),
|
|
|
|
@Index(columnList = "CREATE_DATE_TIME_EXT"),
|
|
|
|
@Index(columnList = "CREATE_DATE_TIME_EXT"),
|
|
|
|
@Index(columnList = "MODIFY_DATE_TIME_EXT")
|
|
|
|
@Index(columnList = "MODIFY_DATE_TIME_EXT"),
|
|
|
|
|
|
|
|
@Index(columnList = "IS_UNFREEZE"),
|
|
|
|
|
|
|
|
@Index(columnList = "PRODUCT_SN"),
|
|
|
|
|
|
|
|
@Index(columnList = "THIRD_PARTY_PID")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
@PrimaryKeyJoinColumn(name = "PID")
|
|
|
|
@PrimaryKeyJoinColumn(name = "PID")
|
|
|
|
@Api("维修信息记录表拓展")
|
|
|
|
@Api("维修信息记录表拓展")
|
|
|
@ -109,6 +112,14 @@ public class MesRepairRecordExt extends MesRepairRecord implements Serializable
|
|
|
|
@ApiParam("是否解冻")
|
|
|
|
@ApiParam("是否解冻")
|
|
|
|
private Integer isUnfreeze = 20;
|
|
|
|
private Integer isUnfreeze = 20;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "MANAGE_CODE")
|
|
|
|
|
|
|
|
@ApiParam("管理码")
|
|
|
|
|
|
|
|
private String manageCode;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "PRODUCT_SN")
|
|
|
|
|
|
|
|
@ApiParam("产品条码")
|
|
|
|
|
|
|
|
private String productSn;
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "THIRD_PARTY_PID")
|
|
|
|
@Column(name = "THIRD_PARTY_PID")
|
|
|
|
@ApiParam("关联ID")
|
|
|
|
@ApiParam("关联ID")
|
|
|
|
private String thirdPartyPid;
|
|
|
|
private String thirdPartyPid;
|
|
|
|