package net.srt.vo; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import net.srt.framework.common.utils.DateUtils; import java.io.Serializable; import java.util.Date; /** * @ClassName : StandardStopwatchVo * @Description : * @Author : FJJ * @Date: 2023-12-24 10:26 */ @Data @Schema(description = "数据治理-标准码表数据") public class StandardStopwatchVo implements Serializable { private static final long serialVersionUID = 1L; @Schema(description = "主键id") private Long id; @Schema(description = "标准码表id") private Long standardId; @Schema(description = "码表数据的id") private String dataId; @Schema(description = "码表数据的name") private String dataName; private Long projectId; @Schema(description = "版本号") private Integer version; @Schema(description = "删除标识 0:正常 1:已删除") private Integer deleted; @Schema(description = "创建者") private Long creator; @Schema(description = "创建时间") @JsonFormat(pattern = DateUtils.DATE_TIME_PATTERN) private Date createTime; @Schema(description = "更新者") private Long updater; @Schema(description = "更新时间") @JsonFormat(pattern = DateUtils.DATE_TIME_PATTERN) private Date updateTime; }