32 lines
645 B
Java
32 lines
645 B
Java
|
|
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;
|
||
|
|
|
||
|
|
@Excel(name = "备注")
|
||
|
|
private String remark;
|
||
|
|
|
||
|
|
private String delFlag;
|
||
|
|
}
|