为双机架完成轧辊,质量,模型等内容
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user