|
|
@ -7,6 +7,7 @@ import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
|
|
import org.hibernate.annotations.ColumnDefault;
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
|
@ -46,6 +47,10 @@ public class MesProcessTorqueManageTaskDetail extends BaseBean implements Serial
|
|
|
|
@ApiParam("产线代码")
|
|
|
|
@ApiParam("产线代码")
|
|
|
|
private String workCenterCode;
|
|
|
|
private String workCenterCode;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name="WORK_CENTER_NAME")
|
|
|
|
|
|
|
|
@ApiParam("产线代码")
|
|
|
|
|
|
|
|
private String workCenterName;
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name="WORK_CELL_CODE")
|
|
|
|
@Column(name="WORK_CELL_CODE")
|
|
|
|
@ApiParam("工位代码")
|
|
|
|
@ApiParam("工位代码")
|
|
|
|
private String workCellCode;
|
|
|
|
private String workCellCode;
|
|
|
@ -63,9 +68,13 @@ public class MesProcessTorqueManageTaskDetail extends BaseBean implements Serial
|
|
|
|
private String shiftName;
|
|
|
|
private String shiftName;
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name="PART_NO")
|
|
|
|
@Column(name="PART_NO")
|
|
|
|
@ApiParam("零件编号")
|
|
|
|
@ApiParam("物料编号")
|
|
|
|
private String partNo;
|
|
|
|
private String partNo;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name="PART_NAME")
|
|
|
|
|
|
|
|
@ApiParam("物料名称")
|
|
|
|
|
|
|
|
private String partName;
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "PROCESS_CODE")
|
|
|
|
@Column(name = "PROCESS_CODE")
|
|
|
|
@ApiParam(value = "工序编号")
|
|
|
|
@ApiParam(value = "工序编号")
|
|
|
|
public String processCode;
|
|
|
|
public String processCode;
|
|
|
@ -192,6 +201,11 @@ public class MesProcessTorqueManageTaskDetail extends BaseBean implements Serial
|
|
|
|
@ApiParam("扭矩螺丝刀-扭矩管理NO3")
|
|
|
|
@ApiParam("扭矩螺丝刀-扭矩管理NO3")
|
|
|
|
private String torqueManageNo3;
|
|
|
|
private String torqueManageNo3;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "SYSTEM_SYNC_STATUS")
|
|
|
|
|
|
|
|
@ColumnDefault("2")
|
|
|
|
|
|
|
|
@ApiParam(value = "系统同步标志")
|
|
|
|
|
|
|
|
public Integer systemSyncStatus = 2;
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
@Transient
|
|
|
|
@ApiParam("全称扭矩螺丝刀-扭矩管理NO3")
|
|
|
|
@ApiParam("全称扭矩螺丝刀-扭矩管理NO3")
|
|
|
|
private String torqueManageNo3Full;
|
|
|
|
private String torqueManageNo3Full;
|
|
|
|