| | |
| | | package com.jcdm.main.rm.repairRecord.domain; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.alibaba.excel.annotation.write.style.HeadFontStyle; |
| | | import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.jcdm.common.annotation.Excel; |
| | | import com.jcdm.common.core.domain.BaseEntity; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 返修记录对象 rm_repair_record |
| | |
| | | * @author Yi |
| | | * @date 2023-12-22 |
| | | */ |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | @ColumnWidth(16) |
| | | @HeadRowHeight(14) |
| | | @HeadFontStyle(fontHeightInPoints = 11) |
| | | public class RmRepairRecord extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | |
| | | /** 返修标识 */ |
| | | @Excel(name = "返修标识") |
| | | @ExcelProperty(value = "返修标识", index = 0) |
| | | private String repairIdentification; |
| | | |
| | | /** 箱体编码 */ |
| | | @Excel(name = "箱体编码") |
| | | @ExcelProperty(value = "箱体编码", index = 1) |
| | | private String boxCode; |
| | | |
| | | @TableField(exist = false) |
| | | @ExcelIgnore |
| | | private List<String> engineNoList; |
| | | |
| | | @TableField(exist = false) |
| | | @ExcelIgnore |
| | | private List<String> engineNoListExcel; |
| | | |
| | | /** 工序编码 */ |
| | | @Excel(name = "工序编码") |
| | | @ExcelProperty(value = "工序编码", index = 2) |
| | | private String processesCode; |
| | | |
| | | /** 原结果 */ |
| | | @Excel(name = "原结果") |
| | | @ExcelProperty(value = "原结果", index = 3) |
| | | private String originalResult; |
| | | |
| | | /** 创建用户 */ |
| | | @Excel(name = "创建用户") |
| | | @ExcelProperty(value = "创建用户", index = 5) |
| | | private String createUser; |
| | | |
| | | /** 更新用户 */ |
| | |
| | | |
| | | /** 返修结果 */ |
| | | @Excel(name = "返修结果") |
| | | @ExcelProperty(value = "返修结果", index = 4) |
| | | private String repairResults; |
| | | |
| | | /** 状态 */ |