| | |
| | | package com.iailab.module.ansteel.api.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | |
| | | private String name; |
| | | |
| | | @Schema(description = "状态") |
| | | private String status; |
| | | private Integer status; |
| | | |
| | | @Schema(description = "内容") |
| | | private String content; |
| | |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | | |
| | | @Schema(description = "i创建时间d") |
| | | private String createDate; |
| | | @Schema(description = "创建时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createDate; |
| | | } |