|
|
|
@ -1,9 +1,12 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.aps.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.annotation.FieldAnnotation;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.annotation.MainKey;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.common.BaseAPS;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.common.BeanRelation;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.holders.EPlanFeedback;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.validator.InsertGroup;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.validator.UpdateGroup;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.ApsEnumUtil;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
@ -26,12 +29,13 @@ import javax.persistence.Table;
|
|
|
|
|
@Entity
|
|
|
|
|
@Table(name = "APS_PLAN_FEEDBACK")
|
|
|
|
|
@Api("工作反馈")
|
|
|
|
|
@MainKey(groups = {InsertGroup.class, UpdateGroup.class})
|
|
|
|
|
public class PlanFeedback extends BaseAPS {
|
|
|
|
|
private static final long serialVersionUID = 2520555825093741381L;
|
|
|
|
|
|
|
|
|
|
@Column(name="WORK_ID")
|
|
|
|
|
@ApiParam(value ="工作")
|
|
|
|
|
@FieldAnnotation(property = false)
|
|
|
|
|
@FieldAnnotation(popSearch = true, mainkey = true, relation = "Work")
|
|
|
|
|
private Long workId;
|
|
|
|
|
|
|
|
|
|
@Column(name="STATUS")
|
|
|
|
|