Inspect.java 1.97 KB
package vion.model;

import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.github.linpeilie.annotations.AutoMapper;
import io.github.linpeilie.annotations.AutoMappers;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import vion.dto.InspectDTO;

import java.util.Date;

/**
 * 巡检信息
 */
@Data
@TableName(value = "tbl_inspect_info")
@AutoMappers({
        @AutoMapper(target = InspectDTO.class),
})
public class Inspect {
    /** 自增列 */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /** 门店id */
    private Long storeId;

    /** 巡检时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @OrderBy
    private Date inspectTime;

    /** 巡检方式(0远程、1现场) */
    private Integer type;
    /** 状态(0进行中、1待审核、2已完成、3、驳回) */
    private Integer status;
    /** 巡检人 */
    private Integer inspectUser;
    /** 审核人 */
    private Integer reviewer;

    /** 巡检时间 */
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date finishTime;

    /** 审核时间 */
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date auditTime;

    /** 创建时间 */
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;

    /** 修改时间 */
    @TableField(value = "modify_time", fill = FieldFill.INSERT_UPDATE)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date modifyTime;
    /** 备注 */
    private String remark;
    /** 集团id */
    private Long accountId;

    @TableField(exist = false)
    private String accountName;
    @TableField(exist = false)
    private String storeName;
}