|
|
@@ -1,5 +1,6 @@
|
|
|
package com.railway.business.bi.domain;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.railway.common.core.domain.BaseEntity;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
@@ -21,6 +22,7 @@ public class ShowBdyc extends BaseEntity {
|
|
|
@ApiModelProperty(value = "主键", hidden = true)
|
|
|
private String id;
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
@ApiModelProperty(value = "发现时间")
|
|
|
private Date foundDate;
|
|
|
|
|
|
@@ -68,12 +70,14 @@ public class ShowBdyc extends BaseEntity {
|
|
|
@Length(min = 1, max = 255, message = "【整改措施】长度必须介于 {min} 和 {max} 之间")
|
|
|
private String rectifyWay;
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
@ApiModelProperty(value = "整改时间")
|
|
|
private Date rectifyDate;
|
|
|
|
|
|
@ApiModelProperty(value = "计数")
|
|
|
private Integer counted;
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
@ApiModelProperty(value = "计划处理时间\n(每周倒排计划)")
|
|
|
private Date planDate;
|
|
|
|