| | |
| | | |
| | | import java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.dromara.common.mybatis.core.domain.BaseEntity; |
| | | import org.dromara.common.translation.annotation.Translation; |
| | | import org.dromara.common.translation.constant.TransConstant; |
| | | import org.dromara.eims.domain.EimsRepairRes; |
| | |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | @AutoMapper(target = EimsRepairRes.class) |
| | | public class EimsRepairResVo implements Serializable { |
| | | public class EimsRepairResVo extends BaseEntity implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | */ |
| | | @ExcelProperty(value = "报修单id") |
| | | private Long reqId; |
| | | |
| | | private Long reqUser;//报修人 |
| | | |
| | | private Long reqDept;//报修人部门 |
| | | |
| | | /** |
| | | * 维修单号 |
| | |
| | | @ExcelProperty(value = "备注") |
| | | private String remark; |
| | | |
| | | /** |
| | | * 评价id |
| | | */ |
| | | private Long fbId; |
| | | |
| | | |
| | | // 关联表字段 |
| | | private String reqType;//报修类型 |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date reqTime;//报修时间 |
| | | private String equName;//设备名称 |
| | | private String assetNo;// |
| | | private String fixtureName;//工具名称 |
| | | private String faultType;//故障类别 |
| | | private String reqDeptName;//报修部门 |
| | |
| | | private String reqCode;//报修编码 |
| | | |
| | | |
| | | |
| | | } |