|
@@ -0,0 +1,80 @@
|
|
|
+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.teachcloud.common.base.BaseEntity;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 分析-批次表
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author wangliang
|
|
|
+ * @since 2022-05-20
|
|
|
+ */
|
|
|
+@ApiModel(value = "GradeBatch对象", description = "分析-批次表")
|
|
|
+public class GradeBatch extends BaseEntity implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学校id")
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long schoolId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学期id")
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long semesterId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "批次编号(在学校下唯一)")
|
|
|
+ private String batchCode;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "批次名称(2020~2021学年上学期期末考试)")
|
|
|
+ private String batchName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "分析批次时间")
|
|
|
+ private Long batchTime;
|
|
|
+
|
|
|
+ public Long getSchoolId() {
|
|
|
+ return schoolId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSchoolId(Long schoolId) {
|
|
|
+ this.schoolId = schoolId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getSemesterId() {
|
|
|
+ return semesterId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSemesterId(Long semesterId) {
|
|
|
+ this.semesterId = semesterId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBatchCode() {
|
|
|
+ return batchCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBatchCode(String batchCode) {
|
|
|
+ this.batchCode = batchCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBatchName() {
|
|
|
+ return batchName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBatchName(String batchName) {
|
|
|
+ this.batchName = batchName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getBatchTime() {
|
|
|
+ return batchTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBatchTime(Long batchTime) {
|
|
|
+ this.batchTime = batchTime;
|
|
|
+ }
|
|
|
+}
|