FormVO.java 1.14 KB
package vion.vo;

import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Getter;
import lombok.Setter;

import java.util.Date;

@Getter
@Setter
public class FormVO {
    private Long id;

    /**
     * 集团id
     */
    private Long accountId;

    private String accountName;

    /**
     * 项目id
     */
    private Long storeId;

    private String storeName;

    /**
     * 类型
     */
    private Integer type;

    /**
     * 具体内容
     */
    private String info;

    /**
     * 签字图片
     */
    private String signPic;

    /**
     * 签字时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date signTime;

    /**
     * 唯一uuid
     */
    private String uuid;

    /**
     * 来源,1:任务管理,2:巡检管理
     */
    private Integer sourceId;

    /**
     * 级联id
     */
    private Long pid;

    private Long createUser;

    private Long updateUser;

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date updateTime;
}