package com.ruoyi.system.domain;
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
import lombok.Data;
|
|
import java.util.Date;
|
import com.ruoyi.common.annotation.Excel;
|
/**
|
* 图片数据对象 ImageData
|
*/
|
@Data
|
public class ImageData extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键ID
|
*/
|
private Long id;
|
|
/**
|
* 调度单ID
|
*/
|
@Excel(name = "调度单ID")
|
private Long dOrdIDDt;
|
|
/**
|
* 服务单ID
|
*/
|
@Excel(name = "服务单ID")
|
private Long sOrdIDDt;
|
|
/**
|
* 图片类型
|
*/
|
@Excel(name = "图片类型")
|
private Integer imageType;
|
|
/**
|
* 图片URL
|
*/
|
@Excel(name = "图片URL")
|
private String imageUrl;
|
|
/**
|
* 图片URLs
|
*/
|
@Excel(name = "图片URLs")
|
private String imageUrls;
|
|
/**
|
* 图片度数
|
*/
|
@Excel(name = "图片度数")
|
private Integer imageDeg;
|
|
/**
|
* 上传图片时间
|
*/
|
@Excel(name = "上传图片时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date upImageTime;
|
|
/**
|
* 上传图片OA用户ID
|
*/
|
@Excel(name = "上传图片OA用户ID")
|
private Integer upImageOAid;
|
|
/**
|
* 图片删除标记
|
*/
|
@Excel(name = "图片删除标记")
|
private Integer imageDel;
|
|
/**
|
* 是否AP
|
*/
|
@Excel(name = "是否AP")
|
private Integer isAP;
|
|
/**
|
* AP ID
|
*/
|
@Excel(name = "AP ID")
|
private Integer isAP_ID;
|
|
/**
|
* AP时间
|
*/
|
@Excel(name = "AP时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date isAP_Time;
|
}
|