| | |
| | | public class SchEvaluate implements Serializable,ITrace { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /**主键*/ |
| | | /**主键*/ |
| | | @Id |
| | | @GeneratedValue(generator = "hibernate-uuid") |
| | | @GenericGenerator(name = "hibernate-uuid", strategy = "uuid") |
| | | @Column(name="EVALUATE_ID", unique=true, nullable=false, length=32) |
| | | private String evaluateId; |
| | | |
| | | /** 评估标题 */ |
| | | /** 评估标题 */ |
| | | @Column(name="evaluate_name", length=128) |
| | | private String evaluateName; |
| | | |
| | |
| | | @Column(name="EVALUATE_RANGE_COUNT") |
| | | private BigInteger evalRangeCount; |
| | | |
| | | /** 评估范围类型-- teacher:老师的评价与建议 online:线上班级评价和建议 crequ:开课需求 offLine:线下班级评价与建议 */ |
| | | /** 评估范围类型-- teacher:老师的评价与建议 online:线上班级评价和建议 crequ:开课需求 offLine:线下班级评价与建议 */ |
| | | public static final String EVALUATE_RANGE_TEACHER="teacher"; |
| | | |
| | | public static final String EVALUATE_RANGE_CREQU="cRequ"; |
| | |
| | | |
| | | public static final String EVALUATE_RANGE_ORG="org"; |
| | | |
| | | /** class:班级 lesson:课程 person:人员 */ |
| | | /** class:班级 lesson:课程 person:人员 */ |
| | | |
| | | public static final String EVALUATE_RANGE_CLASS="class"; |
| | | |
| | |
| | | @Column(name="TYPE") |
| | | private short type; |
| | | |
| | | /** 1:学员 2:讲师 3:机构 */ |
| | | /** 1:学员 2:讲师 3:机构 */ |
| | | public final static short TYPE_STUDENT = 1; |
| | | |
| | | public final static short TYPE_TEACHER = 2; |
| | |
| | | @Column(name="STATUS") |
| | | private short status; |
| | | |
| | | /** 0:未评估 1:评估中 2:评估完成 */ |
| | | /** 0:未评估 1:评估中 2:评估完成 */ |
| | | public final static short STATUS_NOT_EVA = 0; |
| | | |
| | | public final static short STATUS_EVA = 1; |
| | |
| | | @JsonIgnore |
| | | private String attribute2; |
| | | |
| | | /** 结束时间 */ |
| | | /** 结束时间 */ |
| | | @Column(name="END_TIME", nullable=true) |
| | | @Temporal(TemporalType.TIMESTAMP) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | private Date endTime; |
| | | |
| | | /** 图片路径 */ |
| | | /** 图片路径 */ |
| | | @Column(name="IMG_PATH", length=255) |
| | | private String imgPath; |
| | | |
| | | /** 备注 */ |
| | | /** 备注 */ |
| | | @Column(name="REMARK", length=2000) |
| | | @JsonIgnore |
| | | private String remark; |
| | | |
| | | /** 问题组id */ |
| | | /** 问题组id */ |
| | | @Transient |
| | | private String groupId; |
| | | |
| | | /** 问卷平均分 */ |
| | | /** 问卷平均分 */ |
| | | @Transient |
| | | private Double average; |
| | | |
| | | /** 模板类型 */ |
| | | /** 模板类型 */ |
| | | @Transient |
| | | private String templateType; |
| | | |
| | | /** 应评估总人数 */ |
| | | /** 应评估总人数 */ |
| | | @Transient |
| | | private BigInteger evaluateAllCount; |
| | | |