SludgeManagement.java 4.3 KB
package com.skua.modules.sludge.entity;

import java.util.Date;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.skua.tool.annotation.BeanAnno;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;

/**
 * 污泥管理
 */
@Data
@TableName("sludge_management")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "sludge_management对象", description = "污泥管理")
public class SludgeManagement {

    /**
     * id
     */
    @TableId(type = IdType.UUID)
    @ApiModelProperty(value = "id")
    private String id;
    /**
     * 厂区名称
     */
    @Excel(name = "厂区名称", width = 15)
    @ApiModelProperty(value = "厂区名称")
    @BeanAnno(targetFieldName = "departId_dictText")
    private String departId;
    /**
     * 填报员
     */
    @Excel(name = "填报员", width = 15)
    @ApiModelProperty(value = "填报员")
    @BeanAnno(targetFieldName = "fillUser_dictText")
    private String fillUser;
    /**
     * 拍照日期
     */
    @Excel(name = "拍照日期", width = 20)
    @ApiModelProperty(value = "拍照日期")
    private String takePhotoTime;
    /**
     * 监测数组
     */
    @Excel(name = "监测数组", width = 15)
    @ApiModelProperty(value = "监测数组")
    private Integer monitorVal;
    /**
     * SV30结果
     */
    @Excel(name = "1#SV30结果", width = 15)
    @ApiModelProperty(value = "1#SV30结果")
    private String svResult;
    /**
     * SV30照片
     */
    @Excel(name = "SV30照片", width = 15)
    @ApiModelProperty(value = "SV30照片")
    private String svPhoto;
    /**
     * 污泥颜色
     */
    @Excel(name = "污泥颜色", width = 15)
    @ApiModelProperty(value = "污泥颜色")
    private String sludgeColor;
    /**
     * 污泥活性
     */
    @Excel(name = "污泥活性", width = 15)
    @ApiModelProperty(value = "污泥活性")
    private String sludgeActivity;
    /**
     * 污泥含水率
     */
    @Excel(name = "污泥含水率", width = 15)
    @ApiModelProperty(value = "污泥含水率")
    private Double sludgeMoisture;
    /**
     * 干污泥量
     */
    @Excel(name = "干污泥量", width = 15)
    @ApiModelProperty(value = "干污泥量")
    private Double sludgeAmount;
    /**
     * 镜检照片
     */
    @Excel(name = "镜检照片", width = 15)
    @ApiModelProperty(value = "镜检照片")
    private Object microscopyPhoto;
    /**
     * 镜检结果
     */
    @Excel(name = "镜检结果", width = 15)
    @ApiModelProperty(value = "镜检结果")
    private Object microscopyResult;
    /**
     * 创建人id
     */
    @Excel(name = "创建人id", width = 15)
    @ApiModelProperty(value = "创建人id")
    private String createBy;
    /**
     * 创建时间
     */
    @Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
    /**
     * 修改人id
     */
    @Excel(name = "修改人id", width = 15)
    @ApiModelProperty(value = "修改人id")
    private String updateBy;
    /**
     * 修改时间
     */
    @Excel(name = "修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "修改时间")
    private Date updateTime;
    /**
     * 所属部门
     */
    @Excel(name = "所属部门", width = 15)
    @ApiModelProperty(value = "所属部门")
    private String createDept;
    /**
     * 所属公司
     */
    @Excel(name = "所属公司", width = 15)
    @ApiModelProperty(value = "所属公司")
    private String createCmpy;
    /**
     * 删除标识,0:正常,1:删除
     */
    @Excel(name = "删除标识,0:正常,1:删除", width = 15)
    @ApiModelProperty(value = "删除标识,0:正常,1:删除")
    private Integer delFlag;

}