| package com.mzl.flower.dto.response.system; | 
|   | 
| 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 CodeTypeDTO { | 
|     private String id; | 
|   | 
|     @ApiModelProperty(value = "名称") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "类型") | 
|     private String code; | 
|   | 
|     @ApiModelProperty(value = "备注信息") | 
|     private String description; | 
|   | 
|     @ApiModelProperty(value = "更新日期") | 
|     @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss" ,timezone="GMT+8") | 
|     @DateTimeFormat | 
|     private LocalDateTime updateTime; | 
| } |