|
@@ -0,0 +1,122 @@
|
|
|
|
+package com.qmth.distributed.print.business.entity;
|
|
|
|
+
|
|
|
|
+import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
+import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
+import com.qmth.distributed.print.business.enums.StatisticsStatusEnum;
|
|
|
|
+import com.qmth.teachcloud.common.base.BaseEntity;
|
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
+
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * <p>
|
|
|
|
+ * 命题统计表
|
|
|
|
+ * </p>
|
|
|
|
+ *
|
|
|
|
+ * @author wangliang
|
|
|
|
+ * @since 2021-09-09
|
|
|
|
+ */
|
|
|
|
+@ApiModel(value = "TCStatistics对象", description = "命题统计表")
|
|
|
|
+public class TCStatistics extends BaseEntity implements Serializable {
|
|
|
|
+
|
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "主键")
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
+ private Long id;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "课程代码")
|
|
|
|
+ private String courseCode;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "任课老师id")
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
+ private Long teacherId;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "班级id")
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
+ private Long clazzId;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "试卷编号")
|
|
|
|
+ private String paperNumber;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "印刷计划id")
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
+ private Long printPlanId;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "总印份数")
|
|
|
|
+ private Integer printSum;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "完成状态,FINISH:已完成,UN_FINISH:未完成")
|
|
|
|
+ private StatisticsStatusEnum status;
|
|
|
|
+
|
|
|
|
+ public static long getSerialVersionUID() {
|
|
|
|
+ return serialVersionUID;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public Long getId() {
|
|
|
|
+ return id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void setId(Long id) {
|
|
|
|
+ this.id = id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getCourseCode() {
|
|
|
|
+ return courseCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCourseCode(String courseCode) {
|
|
|
|
+ this.courseCode = courseCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getTeacherId() {
|
|
|
|
+ return teacherId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTeacherId(Long teacherId) {
|
|
|
|
+ this.teacherId = teacherId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getClazzId() {
|
|
|
|
+ return clazzId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setClazzId(Long clazzId) {
|
|
|
|
+ this.clazzId = clazzId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getPaperNumber() {
|
|
|
|
+ return paperNumber;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPaperNumber(String paperNumber) {
|
|
|
|
+ this.paperNumber = paperNumber;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getPrintPlanId() {
|
|
|
|
+ return printPlanId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPrintPlanId(Long printPlanId) {
|
|
|
|
+ this.printPlanId = printPlanId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getPrintSum() {
|
|
|
|
+ return printSum;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPrintSum(Integer printSum) {
|
|
|
|
+ this.printSum = printSum;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public StatisticsStatusEnum getStatus() {
|
|
|
|
+ return status;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setStatus(StatisticsStatusEnum status) {
|
|
|
|
+ this.status = status;
|
|
|
|
+ }
|
|
|
|
+}
|