package net.srt.vo; import com.baomidou.mybatisplus.annotation.TableId; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; /** * @ClassName : DatastandardVo * @Description : * @Author : FJJ * @Date: 2023-12-23 12:05 */ @Data @Schema(description = "标准管理查询") public class DatastandardVo implements Serializable { private static final long serialVersionUID = 1L; @TableId("id") private Long id; private Integer categoryId; private String engName; private String cnName; private Integer codeNum; private String dataType; private Integer dataLength; private Integer dataPrecision; private Integer nullable; private Integer standardCodeId; private Integer type; private String note; private Long projectId; private Integer status; private Integer version; private Integer deleted; private String creator; @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date createTime; private String updater; @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date updateTime; private Integer ifStandardRel; private String group; }