zoukankan      html  css  js  c++  java
  • @JsonFormat

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8"

    不管是前端传后台,还是后台传前端,都可以用这个注解来解析时间

    SaveInsuranceVo
        @NotNull(message = "投保时间不能为空" )
        @ApiModelProperty("投保时间")
        @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
        private Date insuranceTime;
        @NotNull(message = "生效时间不能为空" )
        @ApiModelProperty("生效时间")
        @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
        private Date effectTime;
        @NotNull(message = "失效时间不能为空" )
        @ApiModelProperty("失效时间")
        @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
        private Date invalidTime;
        @NotBlank(message = "服务编码不能为空" )
        @ApiModelProperty("服务编码")
        private String serviceCode;
    DoctorInsuranceDto
     @ApiModelProperty("投保时间")
        @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
        private Date insuranceTime;
        @ApiModelProperty("生效时间")
        @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
        private Date effectTime;
        @ApiModelProperty("失效时间")
        @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
        private Date invalidTime;
  • 相关阅读:
    隐藏NGINX服务器名称 和版本号
    salt-grains
    格式化输出文本的方法
    递归例子
    yield 生成器例子
    Python基础之函数
    Python基础之面向对象
    Python基础之模块2
    Python基础之字符编码
    Python基础之文件操作
  • 原文地址:https://www.cnblogs.com/rachelgarden/p/15745904.html
Copyright © 2011-2022 走看看