package com.ruoyi.tc.entity; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.time.LocalDateTime; /** * 任务流程(AssetLc)实体类 * * @author makejava * @since 2024-11-18 14:46:40 */ @Data @ApiModel("任务流程实体类") public class AssetLc implements Serializable { private static final long serialVersionUID = 660117917021496292L; /** * 主键id */ @ApiModelProperty("主键id") private Integer id; /** * 任务id */ @ApiModelProperty("任务id") private Integer taskId; /** * 管理员下发时间 */ @ApiModelProperty("管理员下发时间") @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime xfTime; /** * 单位核查完成提交时间 */ @ApiModelProperty("单位核查完成提交时间") @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime dwhcTime; /** * 管理员审核驳回时间 */ @ApiModelProperty("管理员审核驳回时间") @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime shbhTime; /** * 单位重新核查提交时间 */ @ApiModelProperty("单位重新核查提交时间") @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime dwcxhcTime; /** * 管理员审核通过时间 */ @ApiModelProperty("管理员审核通过时间") @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime shtgTime; /** * 用户id */ @ApiModelProperty("用户id") private Integer ueserId; /** * 部门id */ @ApiModelProperty("部门id") private Integer deptId; /** * 创建者id */ @ApiModelProperty("创建者id") private Integer createId; /** * 创建人 */ @ApiModelProperty("创建人") private String createBy; /** * 创建时间 */ @ApiModelProperty("创建时间") @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime createTime; /** * 更新着id */ @ApiModelProperty("更新着id") private Integer updateId; /** * 更新者 */ @ApiModelProperty("更新者") private String updateBy; /** * 更新时间 */ @ApiModelProperty("更新时间") @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime updateTime; /** * 版本 */ @ApiModelProperty("版本") private String version; /** * 备注 */ @ApiModelProperty("备注") private String remark; }