|
|
@@ -1,8 +1,12 @@
|
|
|
package com.ydtech.modules.admin.model.dto;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
|
|
@Data
|
|
|
public class SysDeptAccountDto {
|
|
|
@@ -15,7 +19,8 @@ public class SysDeptAccountDto {
|
|
|
private String managementFee;
|
|
|
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
|
- private String createTime;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ private LocalDateTime createTime;
|
|
|
|
|
|
@TableField(exist = false)
|
|
|
private int pageNo;
|