|
|
@ -37,6 +37,10 @@ public class MesPcnTask extends BaseBean {
|
|
|
|
@ApiParam("任务名称")
|
|
|
|
@ApiParam("任务名称")
|
|
|
|
private String taskName;
|
|
|
|
private String taskName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name="TASK_GROUP_NAME")
|
|
|
|
|
|
|
|
@ApiParam("任务组名称")
|
|
|
|
|
|
|
|
private String taskGroupName;
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name="TASK_DESCRIPTION")
|
|
|
|
@Column(name="TASK_DESCRIPTION")
|
|
|
|
@ApiParam("任务描述")
|
|
|
|
@ApiParam("任务描述")
|
|
|
|
private String taskDescription;
|
|
|
|
private String taskDescription;
|
|
|
@ -69,7 +73,15 @@ public class MesPcnTask extends BaseBean {
|
|
|
|
@ApiParam("任务周期描述")
|
|
|
|
@ApiParam("任务周期描述")
|
|
|
|
private String taskCycleDescription;
|
|
|
|
private String taskCycleDescription;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name="TASK_STATUS")
|
|
|
|
|
|
|
|
@ApiParam("任务状态")
|
|
|
|
|
|
|
|
private Integer taskStatus;
|
|
|
|
|
|
|
|
|
|
|
|
public int getTaskTypeVal() {
|
|
|
|
public int getTaskTypeVal() {
|
|
|
|
return this.taskType == null ? 0 : this.taskType;
|
|
|
|
return this.taskType == null ? 0 : this.taskType;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int getTaskStatusVal() {
|
|
|
|
|
|
|
|
return this.taskStatus == null ? 0 : this.taskStatus;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|