|
@@ -3,6 +3,7 @@ package com.qmth.distributed.print.business.bean.result;
|
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
+import com.qmth.distributed.print.common.contant.SystemConstant;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.io.Serializable;
|
|
@@ -30,14 +31,35 @@ public class WorkResult implements Serializable {
|
|
|
@ApiModelProperty(value = "课程代码")
|
|
|
String courseCode;
|
|
|
|
|
|
+ @ApiModelProperty(value = "适用专业")
|
|
|
+ String specialty;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "题卡规则ID")
|
|
|
+ String cardRuleId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "题卡规则名称")
|
|
|
+ String cardRuleName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "用户ID")
|
|
|
+ String userId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "用户名称")
|
|
|
+ String userName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "命题开始时间")
|
|
|
+ Long startTime;
|
|
|
+
|
|
|
@ApiModelProperty(value = "命题结束时间")
|
|
|
Long endTime;
|
|
|
|
|
|
+ @ApiModelProperty(value = "状态")
|
|
|
+ String status;
|
|
|
+
|
|
|
@ApiModelProperty(value = "剩余天数")
|
|
|
Integer remainCount;
|
|
|
|
|
|
- @ApiModelProperty(value = "命题老师")
|
|
|
- String questionName;
|
|
|
+ @ApiModelProperty(value = "提交人")
|
|
|
+ Long createId;
|
|
|
|
|
|
@ApiModelProperty(value = "提交时间")
|
|
|
Long createTime;
|
|
@@ -45,29 +67,8 @@ public class WorkResult implements Serializable {
|
|
|
@ApiModelProperty(value = "待办条数")
|
|
|
Integer count;
|
|
|
|
|
|
- public String getQuestionName() {
|
|
|
- return questionName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setQuestionName(String questionName) {
|
|
|
- this.questionName = questionName;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getCreateTime() {
|
|
|
- return createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTime(Long createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getCount() {
|
|
|
- return count;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCount(Integer count) {
|
|
|
- this.count = count;
|
|
|
- }
|
|
|
+ @ApiModelProperty(value = "当前服务器时间")
|
|
|
+ Long systemCurrentTime;
|
|
|
|
|
|
public Long getId() {
|
|
|
return id;
|
|
@@ -101,6 +102,54 @@ public class WorkResult implements Serializable {
|
|
|
this.courseCode = courseCode;
|
|
|
}
|
|
|
|
|
|
+ public String getSpecialty() {
|
|
|
+ return specialty;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSpecialty(String specialty) {
|
|
|
+ this.specialty = specialty;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCardRuleId() {
|
|
|
+ return cardRuleId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCardRuleId(String cardRuleId) {
|
|
|
+ this.cardRuleId = cardRuleId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCardRuleName() {
|
|
|
+ return cardRuleName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCardRuleName(String cardRuleName) {
|
|
|
+ this.cardRuleName = cardRuleName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserId() {
|
|
|
+ return userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserId(String userId) {
|
|
|
+ this.userId = userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserName() {
|
|
|
+ return userName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserName(String userName) {
|
|
|
+ this.userName = userName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getStartTime() {
|
|
|
+ return startTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStartTime(Long startTime) {
|
|
|
+ this.startTime = startTime;
|
|
|
+ }
|
|
|
+
|
|
|
public Long getEndTime() {
|
|
|
return endTime;
|
|
|
}
|
|
@@ -109,6 +158,14 @@ public class WorkResult implements Serializable {
|
|
|
this.endTime = endTime;
|
|
|
}
|
|
|
|
|
|
+ public String getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatus(String status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getRemainCount() {
|
|
|
return remainCount;
|
|
|
}
|
|
@@ -116,4 +173,36 @@ public class WorkResult implements Serializable {
|
|
|
public void setRemainCount(Integer remainCount) {
|
|
|
this.remainCount = remainCount;
|
|
|
}
|
|
|
+
|
|
|
+ public Long getCreateId() {
|
|
|
+ return createId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateId(Long createId) {
|
|
|
+ this.createId = createId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(Long createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCount() {
|
|
|
+ return count;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCount(Integer count) {
|
|
|
+ this.count = count;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getSystemCurrentTime() {
|
|
|
+ return System.currentTimeMillis();
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSystemCurrentTime(Long systemCurrentTime) {
|
|
|
+ this.systemCurrentTime = systemCurrentTime;
|
|
|
+ }
|
|
|
}
|