|
@@ -45,7 +45,7 @@ public class IndicatorCorrection extends Model<IndicatorCorrection> {
|
|
|
* 修正日期
|
|
|
*/
|
|
|
@ApiModelProperty(value = "修正日期")
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM", timezone = "GMT+8")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date reviseDate;
|
|
|
|
|
@@ -116,7 +116,11 @@ public class IndicatorCorrection extends Model<IndicatorCorrection> {
|
|
|
@TableField(exist = false)
|
|
|
@ApiModelProperty(hidden = true)
|
|
|
private String createUserName;
|
|
|
-
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @TableField(value = "CREATE_TIME", fill = FieldFill.INSERT)
|
|
|
+ private Date updateTime;
|
|
|
@ApiModelProperty(value = "修改人")
|
|
|
@TableField(value = "UPDATE_USER", fill = FieldFill.UPDATE)
|
|
|
private Long updateUser;
|