2026-05-28 16:16:49 +08:00
|
|
|
package com.ruoyi.mill.domain;
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 双机架设备巡检部位 mill_eqp_part
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
public class EqpEquipmentPart extends BaseEntity {
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Excel(name = "部位ID")
|
|
|
|
|
private Long partId;
|
|
|
|
|
|
|
|
|
|
@Excel(name = "巡检部位")
|
|
|
|
|
private String inspectPart;
|
|
|
|
|
|
|
|
|
|
@Excel(name = "产线")
|
|
|
|
|
private String productionLine;
|
|
|
|
|
|
|
|
|
|
@Excel(name = "产线段")
|
|
|
|
|
private String lineSection;
|
|
|
|
|
|
2026-06-08 13:41:28 +08:00
|
|
|
@Excel(name = "负责人")
|
|
|
|
|
private String responsiblePerson;
|
|
|
|
|
|
2026-05-28 16:16:49 +08:00
|
|
|
@Excel(name = "备注")
|
|
|
|
|
private String remark;
|
|
|
|
|
|
|
|
|
|
private String delFlag;
|
|
|
|
|
}
|