|
|
@ -3,6 +3,7 @@ package cn.estsh.i3plus.pojo.aps.bean;
|
|
|
|
import cn.estsh.i3plus.pojo.aps.annotation.FieldAnnotation;
|
|
|
|
import cn.estsh.i3plus.pojo.aps.annotation.FieldAnnotation;
|
|
|
|
import cn.estsh.i3plus.pojo.aps.common.BaseAPS;
|
|
|
|
import cn.estsh.i3plus.pojo.aps.common.BaseAPS;
|
|
|
|
import cn.estsh.i3plus.pojo.aps.common.BeanRelation;
|
|
|
|
import cn.estsh.i3plus.pojo.aps.common.BeanRelation;
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.enums.WORK_PLAN_TYPE;
|
|
|
|
import cn.estsh.i3plus.pojo.aps.holders.EWorkPlan;
|
|
|
|
import cn.estsh.i3plus.pojo.aps.holders.EWorkPlan;
|
|
|
|
import cn.estsh.i3plus.pojo.aps.holders.EWorkRelation;
|
|
|
|
import cn.estsh.i3plus.pojo.aps.holders.EWorkRelation;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
@ -33,6 +34,11 @@ import java.util.List;
|
|
|
|
@Table(name="APS_WORK_PLAN")
|
|
|
|
@Table(name="APS_WORK_PLAN")
|
|
|
|
@Api("工作计划")
|
|
|
|
@Api("工作计划")
|
|
|
|
public class WorkPlan extends BaseAPS {
|
|
|
|
public class WorkPlan extends BaseAPS {
|
|
|
|
|
|
|
|
@Column(name="TYPE")
|
|
|
|
|
|
|
|
@ApiParam(value ="工作计划类型")
|
|
|
|
|
|
|
|
@FieldAnnotation(modify = false, display = false)
|
|
|
|
|
|
|
|
private WORK_PLAN_TYPE type;
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name="PREV_SET_BEGIN")
|
|
|
|
@Column(name="PREV_SET_BEGIN")
|
|
|
|
@ApiParam(value ="前设置开始时间")
|
|
|
|
@ApiParam(value ="前设置开始时间")
|
|
|
|
@FieldAnnotation(modify = false)
|
|
|
|
@FieldAnnotation(modify = false)
|
|
|
|