|
@@ -8,8 +8,10 @@ import com.eco.common.mapper.annotation.FieldMapper;
|
|
import io.github.linpeilie.annotations.AutoMapper;
|
|
import io.github.linpeilie.annotations.AutoMapper;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
+
|
|
import java.io.Serial;
|
|
import java.io.Serial;
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
|
+
|
|
import org.eco.common.orm.core.domain.BaseEntity;
|
|
import org.eco.common.orm.core.domain.BaseEntity;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -24,50 +26,72 @@ import org.eco.common.orm.core.domain.BaseEntity;
|
|
@AutoMapper(target = PartReplacement.class)
|
|
@AutoMapper(target = PartReplacement.class)
|
|
public class PartReplacementVo extends BaseEntity implements Serializable {
|
|
public class PartReplacementVo extends BaseEntity implements Serializable {
|
|
|
|
|
|
-@Serial
|
|
|
|
-private static final long serialVersionUID = 1L;
|
|
|
|
|
|
+ @Serial
|
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- /** 编号 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 编号
|
|
|
|
+ */
|
|
@ExcelProperty(value = "编号")
|
|
@ExcelProperty(value = "编号")
|
|
private Long id;
|
|
private Long id;
|
|
|
|
|
|
- /** 飞机编码 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 飞机编码
|
|
|
|
+ */
|
|
@ExcelProperty(value = "飞机编码")
|
|
@ExcelProperty(value = "飞机编码")
|
|
private String aircraftCode;
|
|
private String aircraftCode;
|
|
|
|
|
|
- /** 换件前器材编码 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 换件前器材编码
|
|
|
|
+ */
|
|
@ExcelProperty(value = "换件前器材编码")
|
|
@ExcelProperty(value = "换件前器材编码")
|
|
private String beforeEquipmentCode;
|
|
private String beforeEquipmentCode;
|
|
|
|
|
|
- /** 换件前器材名称 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 换件前器材名称
|
|
|
|
+ */
|
|
@ExcelProperty(value = "换件前器材名称")
|
|
@ExcelProperty(value = "换件前器材名称")
|
|
private String beforeEquipmentName;
|
|
private String beforeEquipmentName;
|
|
|
|
|
|
- /** 换件前规格型号 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 换件前规格型号
|
|
|
|
+ */
|
|
@ExcelProperty(value = "换件前规格型号")
|
|
@ExcelProperty(value = "换件前规格型号")
|
|
private String beforeModelNumber;
|
|
private String beforeModelNumber;
|
|
|
|
|
|
- /** 换件后器材编码 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 换件后器材编码
|
|
|
|
+ */
|
|
@ExcelProperty(value = "换件后器材编码")
|
|
@ExcelProperty(value = "换件后器材编码")
|
|
private String afterEquipmentCode;
|
|
private String afterEquipmentCode;
|
|
|
|
|
|
- /** 换件后器材名称 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 换件后器材名称
|
|
|
|
+ */
|
|
@ExcelProperty(value = "换件后器材名称")
|
|
@ExcelProperty(value = "换件后器材名称")
|
|
private String afterEquipmentName;
|
|
private String afterEquipmentName;
|
|
|
|
|
|
- /** 换件后规格型号 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 换件后规格型号
|
|
|
|
+ */
|
|
@ExcelProperty(value = "换件后规格型号")
|
|
@ExcelProperty(value = "换件后规格型号")
|
|
private String afterModelNumber;
|
|
private String afterModelNumber;
|
|
|
|
|
|
- /** 更换数量 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 更换数量
|
|
|
|
+ */
|
|
@ExcelProperty(value = "更换数量")
|
|
@ExcelProperty(value = "更换数量")
|
|
private String quantity;
|
|
private String quantity;
|
|
|
|
|
|
- /** 备注 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 备注
|
|
|
|
+ */
|
|
@ExcelProperty(value = "备注")
|
|
@ExcelProperty(value = "备注")
|
|
private String remarks;
|
|
private String remarks;
|
|
|
|
|
|
- /** 删除标识(1删除 0未删除) */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 删除标识(1删除 0未删除)
|
|
|
|
+ */
|
|
@ExcelProperty(value = "删除标识(1删除 0未删除)")
|
|
@ExcelProperty(value = "删除标识(1删除 0未删除)")
|
|
private Integer delFlag;
|
|
private Integer delFlag;
|
|
|
|
|