|
|
@@ -1,5 +1,6 @@
|
|
|
package com.hotent.project.resp;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
@@ -59,4 +60,21 @@ public class ArchiveProofreadResp implements Serializable {
|
|
|
@ApiModelProperty(value = "文书生成状态:0-未生成 1-已生成")
|
|
|
@JsonProperty("generateStatus")
|
|
|
private String generateStatus;
|
|
|
+
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "备注")
|
|
|
+ @JsonProperty("remark")
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "保管期限")
|
|
|
+ @JsonProperty("retentionPeriod")
|
|
|
+ private String retentionPeriod;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "卷宗号")
|
|
|
+ @JsonProperty("archiveNo")
|
|
|
+ private String archiveNo;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "检查人")
|
|
|
+ @JsonProperty("inspector")
|
|
|
+ private String inspector;
|
|
|
}
|