package org.dromara.eims.domain;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import org.dromara.common.mybatis.core.domain.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.io.Serial;
|
|
/**
|
* 维修工单对象 eims_repair_res
|
*
|
* @author zhuguifei
|
* @date 2025-02-25
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@TableName("eims_repair_res")
|
public class EimsRepairRes extends BaseEntity {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
*
|
*/
|
@TableId(value = "id")
|
private Long id;
|
|
/**
|
* 报修单id
|
*/
|
private Long reqId;
|
|
private Long reqUser;//报修人
|
|
private Long reqDept;//报修人部门
|
|
/**
|
* 维修单号
|
*/
|
private String resCode;
|
|
/**
|
* 维修人
|
*/
|
private Long resUser;
|
|
/**
|
* 维修人部门
|
*/
|
private Long resDept;
|
|
/**
|
* 原因分析
|
|
*/
|
private String resReason;
|
|
/**
|
* 处理措施
|
*/
|
private String resHandle;
|
|
/**
|
* 预防措施
|
*/
|
private String resPrevent;
|
|
/**
|
* 维修状态(字典)
|
*/
|
private String status;
|
|
/**
|
* 开始时间
|
*/
|
private Date startTime;
|
|
/**
|
* 结束时间
|
*/
|
private Date endTime;
|
|
/**
|
* 使用工具
|
*/
|
private String useFixture;
|
|
/**
|
* 使用备件
|
*/
|
private String useParts;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
|
}
|