|
@@ -43,6 +43,12 @@ public class ExamTaskSubmitPram extends BaseEntity implements Serializable {
|
|
|
@TableField(exist = false)
|
|
|
private List<Long> approveUserIds;
|
|
|
|
|
|
+ @ApiModelProperty(value = "附件")
|
|
|
+ private String paperConfirmAttachmentIds;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "附件说明")
|
|
|
+ private String remark;
|
|
|
+
|
|
|
@ApiModelProperty(value = "自定义流程id")
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
@TableField(exist = false)
|
|
@@ -103,4 +109,20 @@ public class ExamTaskSubmitPram extends BaseEntity implements Serializable {
|
|
|
public void setExamTaskContent(String examTaskContent) {
|
|
|
this.examTaskContent = examTaskContent;
|
|
|
}
|
|
|
+
|
|
|
+ public String getPaperConfirmAttachmentIds() {
|
|
|
+ return paperConfirmAttachmentIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPaperConfirmAttachmentIds(String paperConfirmAttachmentIds) {
|
|
|
+ this.paperConfirmAttachmentIds = paperConfirmAttachmentIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRemark() {
|
|
|
+ return remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRemark(String remark) {
|
|
|
+ this.remark = remark;
|
|
|
+ }
|
|
|
}
|