|
@@ -22,7 +22,6 @@ import com.zhongzheng.common.annotation.Excel;
|
|
public class ClassGradeUser implements Serializable {
|
|
public class ClassGradeUser implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID=1L;
|
|
private static final long serialVersionUID=1L;
|
|
-
|
|
|
|
/** $column.columnComment */
|
|
/** $column.columnComment */
|
|
@TableId(value = "id")
|
|
@TableId(value = "id")
|
|
private Long id;
|
|
private Long id;
|
|
@@ -38,12 +37,20 @@ private static final long serialVersionUID=1L;
|
|
/** 修改时间 */
|
|
/** 修改时间 */
|
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
|
private Long updateTime;
|
|
private Long updateTime;
|
|
-
|
|
|
|
/** 指派操作者 */
|
|
/** 指派操作者 */
|
|
@TableField(fill = FieldFill.INSERT)
|
|
@TableField(fill = FieldFill.INSERT)
|
|
private String createBy;
|
|
private String createBy;
|
|
/** 来源 1订单购买 */
|
|
/** 来源 1订单购买 */
|
|
private Integer fromType;
|
|
private Integer fromType;
|
|
|
|
+ /** 学时审批状态 0 未通过 1通过 2待审核 */
|
|
|
|
+ private Integer periodStatus;
|
|
/** 订单商品id */
|
|
/** 订单商品id */
|
|
private Long orderGoodsId;
|
|
private Long orderGoodsId;
|
|
|
|
+ /** 结业状态 0 未结业 1结业 */
|
|
|
|
+ private Integer finishStatus;
|
|
|
|
+ /** 官方推送状态 1是 0否 */
|
|
|
|
+ private Integer officialStatus;
|
|
|
|
+ /** 官方学习账号推送状态 0否 1是 */
|
|
|
|
+ private Integer learnStatus;
|
|
}
|
|
}
|
|
|
|
+
|