8596309f by 荆蔚杰

字段添加.时间格式统一

1 parent e637195e
Showing 29 changed files with 80 additions and 46 deletions
......@@ -8,6 +8,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
import javax.validation.constraints.NotEmpty;
......@@ -82,6 +83,7 @@ public class AddDgBusinessRequest implements Serializable {
*/
@NotEmpty(message = "收件时间【sjsj】不能为空")
@ApiModelProperty(name = "sjsj", value = "收件时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date sjsj;
/**
......
......@@ -78,8 +78,7 @@ public class DgBusinessDetailVO implements Serializable {
* 收件时间
*/
@ApiModelProperty(name = "sjsj", value = "收件时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date sjsj;
/**
......
......@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -77,6 +78,7 @@ public class DgBusinessListVO implements Serializable {
* 收件时间
*/
@ApiModelProperty(name = "sjsj", value = "收件时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date sjsj;
/**
......
......@@ -8,6 +8,7 @@ import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.pashanhoo.common.PageInfo;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -92,6 +93,7 @@ public class DgBusinessSearchRequest extends PageInfo implements Serializable {
* 收件时间
*/
@ApiModelProperty(name = "sjsj", value = "收件时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date sjsj;
/**
......
......@@ -78,8 +78,7 @@ public class UpdateDgBusinessRequest implements Serializable {
* 收件时间
*/
@ApiModelProperty(name = "sjsj", value = "收件时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date sjsj;
/**
......
......@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -39,6 +40,7 @@ public class AddDgArchivesDestructionRequest implements Serializable {
* 发起日期
*/
@ApiModelProperty(name = "fqrq", value = "发起日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date fqrq;
/**
......@@ -69,6 +71,7 @@ public class AddDgArchivesDestructionRequest implements Serializable {
* 销毁日期
*/
@ApiModelProperty(name = "xhrq", value = "销毁日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date xhrq;
......
......@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -44,6 +45,7 @@ public class DgArchivesDestructionDetailVO implements Serializable {
* 发起日期
*/
@ApiModelProperty(name = "fqrq", value = "发起日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date fqrq;
/**
......@@ -74,6 +76,7 @@ public class DgArchivesDestructionDetailVO implements Serializable {
* 销毁日期
*/
@ApiModelProperty(name = "xhrq", value = "销毁日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date xhrq;
......
......@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -44,6 +45,7 @@ public class DgArchivesDestructionListVO implements Serializable {
* 发起日期
*/
@ApiModelProperty(name = "fqrq", value = "发起日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date fqrq;
/**
......@@ -74,6 +76,7 @@ public class DgArchivesDestructionListVO implements Serializable {
* 销毁日期
*/
@ApiModelProperty(name = "xhrq", value = "销毁日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date xhrq;
/**
* 数量(卷)
......
......@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.pashanhoo.common.PageInfo;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -39,6 +40,7 @@ public class DgArchivesDestructionSearchRequest extends PageInfo implements Seri
* 销毁日期
*/
@ApiModelProperty(name = "xhrq", value = "销毁日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date xhrq;
......
......@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -44,6 +45,7 @@ public class UpdateDgArchivesDestructionRequest implements Serializable {
* 发起日期
*/
@ApiModelProperty(name = "fqrq", value = "发起日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date fqrq;
/**
......@@ -74,6 +76,7 @@ public class UpdateDgArchivesDestructionRequest implements Serializable {
* 销毁日期
*/
@ApiModelProperty(name = "xhrq", value = "销毁日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date xhrq;
......
......@@ -49,8 +49,7 @@ public class AddDgFileRequest implements Serializable {
* 上传日期
*/
@ApiModelProperty(name = "scrq", value = "上传日期")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date scrq;
/**
......
......@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -44,6 +45,7 @@ public class DgFileDetailVO implements Serializable {
* 上传日期
*/
@ApiModelProperty(name = "scrq", value = "上传日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date scrq;
/**
......
......@@ -47,8 +47,7 @@ public class DgFileListVO implements Serializable {
* 上传日期
*/
@ApiModelProperty(name = "scrq", value = "上传日期")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date scrq;
/**
......
......@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.pashanhoo.common.PageInfo;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -45,6 +46,7 @@ public class DgFileSearchRequest extends PageInfo implements Serializable {
* 上传日期
*/
@ApiModelProperty(name = "scrq", value = "上传日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date scrq;
/**
......
......@@ -47,8 +47,7 @@ public class UpdateDgFileRequest implements Serializable {
* 上传日期
*/
@ApiModelProperty(name = "scrq", value = "上传日期")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date scrq;
/**
......
......@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -51,12 +52,14 @@ public class AddDgLendRequest implements Serializable {
* 借阅日期
*/
@ApiModelProperty(name = "jyrq", value = "借阅日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date jyrq;
/**
* 归还日期
*/
@ApiModelProperty(name = "ghrq", value = "归还日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date ghrq;
/**
......@@ -93,6 +96,7 @@ public class AddDgLendRequest implements Serializable {
* 批准时间
*/
@ApiModelProperty(name = "pzsj", value = "批准时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date pzsj;
/**
* 归还人
......
......@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -57,12 +58,14 @@ public class DgLendListVO implements Serializable {
* 借阅日期
*/
@ApiModelProperty(name = "jyrq", value = "借阅日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date jyrq;
/**
* 归还日期
*/
@ApiModelProperty(name = "ghrq", value = "归还日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date ghrq;
/**
......@@ -99,6 +102,7 @@ public class DgLendListVO implements Serializable {
* 批准时间
*/
@ApiModelProperty(name = "pzsj", value = "批准时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date pzsj;
......
......@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -56,12 +57,14 @@ public class UpdateDgLendRequest implements Serializable {
* 借阅日期
*/
@ApiModelProperty(name = "jyrq", value = "借阅日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date jyrq;
/**
* 归还日期
*/
@ApiModelProperty(name = "ghrq", value = "归还日期")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date ghrq;
/**
......@@ -98,6 +101,7 @@ public class UpdateDgLendRequest implements Serializable {
* 批准时间
*/
@ApiModelProperty(name = "pzsj", value = "批准时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date pzsj;
/**
* 归还人
......
......@@ -55,8 +55,7 @@ public class AddDgArchivesModifyRequest implements Serializable {
* 创建时间
*/
@ApiModelProperty(name="createTime" ,value = "创建时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
/**
......@@ -81,7 +80,6 @@ public class AddDgArchivesModifyRequest implements Serializable {
* 归档时间
*/
@ApiModelProperty(name = "gdsj", value = "归档时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date gdsj;
}
......
......@@ -59,8 +59,7 @@ public class DgArchivesModifyDetailVO implements Serializable {
* 创建时间
*/
@ApiModelProperty(name="createTime" ,value = "创建时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
/**
......@@ -85,7 +84,6 @@ public class DgArchivesModifyDetailVO implements Serializable {
* 归档时间
*/
@ApiModelProperty(name = "gdsj", value = "归档时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date gdsj;
}
......
......@@ -44,15 +44,13 @@ public class DgArchivesModifySearchRequest extends PageInfo implements Serializa
* 修改起始时间
*/
@ApiModelProperty(name = "xgqssj", value = "修改起始时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date xgqssj;
/**
* 修改截止时间
*/
@ApiModelProperty(name = "xgjzsj", value = "修改截止时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date xgjzsj;
/**
* 档案号
......
......@@ -53,8 +53,7 @@ public class UpdateDgArchivesModifyRequest implements Serializable {
* 创建时间
*/
@ApiModelProperty(name="createTime" ,value = "创建时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
/**
......@@ -85,7 +84,6 @@ public class UpdateDgArchivesModifyRequest implements Serializable {
* 归档时间
*/
@ApiModelProperty(name = "gdsj", value = "归档时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date gdsj;
}
......
......@@ -12,6 +12,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
import javax.validation.constraints.NotEmpty;
......@@ -63,6 +64,7 @@ public class AddDgReceiveRequest implements Serializable {
*/
@NotEmpty(message = "收件时间【sjsj】不能为空")
@ApiModelProperty(name = "sjsj", value = "收件时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date sjsj;
/**
* 业务号
......@@ -81,7 +83,7 @@ public class AddDgReceiveRequest implements Serializable {
*/
@NotEmpty(message = "单元总数【dyzs】不能为空")
@ApiModelProperty(name = "dyzs", value = "单元总数")
private BigDecimal dyzs;
private Integer dyzs;
/**
* 不动产权证号
*/
......@@ -116,12 +118,14 @@ public class AddDgReceiveRequest implements Serializable {
*/
@NotEmpty(message = "登记时间【djsj】不能为空")
@ApiModelProperty(name = "djsj", value = "登记时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date djsj;
/**
* 接收时间
*/
@NotEmpty(message = "接收时间【jssj】不能为空")
@ApiModelProperty(name = "jssj", value = "接收时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date jssj;
/**
* 推送机构编码
......
......@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -57,6 +58,7 @@ public class DgReceiveDetailVO implements Serializable {
* 收件时间
*/
@ApiModelProperty(name = "sjsj", value = "收件时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date sjsj;
/**
......@@ -75,7 +77,7 @@ public class DgReceiveDetailVO implements Serializable {
* 单元总数
*/
@ApiModelProperty(name = "dyzs", value = "单元总数")
private BigDecimal dyzs;
private Integer dyzs;
/**
* 不动产权证号
......@@ -111,12 +113,14 @@ public class DgReceiveDetailVO implements Serializable {
* 登记时间
*/
@ApiModelProperty(name = "djsj", value = "登记时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date djsj;
/**
* 接收时间
*/
@ApiModelProperty(name = "jssj", value = "接收时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date jssj;
/**
......@@ -135,6 +139,7 @@ public class DgReceiveDetailVO implements Serializable {
* 归档时间
*/
@ApiModelProperty(name = "gdsj", value = "归档时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date gdsj;
/**
......
......@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -58,6 +59,7 @@ public class DgReceiveListVO implements Serializable {
* 收件时间
*/
@ApiModelProperty(name = "sjsj", value = "收件时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date sjsj;
/**
......@@ -76,7 +78,7 @@ public class DgReceiveListVO implements Serializable {
* 单元总数
*/
@ApiModelProperty(name = "dyzs", value = "单元总数")
private BigDecimal dyzs;
private Integer dyzs;
/**
* 不动产权证号
......@@ -112,12 +114,14 @@ public class DgReceiveListVO implements Serializable {
* 登记时间
*/
@ApiModelProperty(name = "djsj", value = "登记时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date djsj;
/**
* 接收时间
*/
@ApiModelProperty(name = "jssj", value = "接收时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date jssj;
/**
......@@ -136,6 +140,7 @@ public class DgReceiveListVO implements Serializable {
* 归档时间
*/
@ApiModelProperty(name = "gdsj", value = "归档时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date gdsj;
/**
......
......@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
/**
* <p>
......@@ -57,6 +58,7 @@ public class UpdateDgReceiveRequest implements Serializable {
* 收件时间
*/
@ApiModelProperty(name = "sjsj", value = "收件时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date sjsj;
/**
......@@ -75,7 +77,7 @@ public class UpdateDgReceiveRequest implements Serializable {
* 单元总数
*/
@ApiModelProperty(name = "dyzs", value = "单元总数")
private BigDecimal dyzs;
private Integer dyzs;
/**
* 不动产权证号
......@@ -111,12 +113,14 @@ public class UpdateDgReceiveRequest implements Serializable {
* 登记时间
*/
@ApiModelProperty(name = "djsj", value = "登记时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date djsj;
/**
* 接收时间
*/
@ApiModelProperty(name = "jssj", value = "接收时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date jssj;
/**
......@@ -135,6 +139,7 @@ public class UpdateDgReceiveRequest implements Serializable {
* 归档时间
*/
@ApiModelProperty(name = "gdsj", value = "归档时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date gdsj;
/**
......
......@@ -54,8 +54,7 @@ public class DgArchivesReplenishDetailVO implements Serializable {
* 创建时间
*/
@ApiModelProperty(name = "createTime", value = "创建时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
/**
......@@ -67,16 +66,13 @@ public class DgArchivesReplenishDetailVO implements Serializable {
/**
* 状态1:补录中,2:已归档
*/
@TableField("STATE")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiModelProperty(name = "state", value = "状态1:补录中,2:已归档")
private String state;
/**
* 归档时间
*/
@TableField("GDSJ")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiModelProperty(name = "gdsj", value = "归档时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date gdsj;
}
......
......@@ -91,7 +91,6 @@ public class DgArchivesReplenishListVO implements Serializable {
*/
@ApiModelProperty(name = "createTime", value = "创建时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date createTime;
/**
......@@ -117,6 +116,5 @@ public class DgArchivesReplenishListVO implements Serializable {
*/
@TableField("GDSJ")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date gdsj;
}
......
......@@ -55,21 +55,19 @@ public class DgArchivesReplenishSearchRequest extends PageInfo implements Serial
* 创建时间
*/
@ApiModelProperty(name = "createTime", value = "创建时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
/**
* 状态1:补录中,2:已归档
*/
@TableField("STATE")
@ApiModelProperty(name = "state", value = "状态1:补录中,2:已归档")
private String state;
/**
* 归档时间
*/
@TableField("GDSJ")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiModelProperty(name = "gdsj", value = "归档时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date gdsj;
}
......