feat(eqp): 添加巡检加产线和产线段

This commit is contained in:
2026-05-21 18:02:39 +08:00
parent d60508364b
commit 0abd3668ad
5 changed files with 34 additions and 0 deletions

View File

@@ -28,6 +28,14 @@ public class EqpEquipmentPart extends BaseEntity {
* 巡检部位
*/
private String inspectPart;
/**
* 产线
*/
private String productionLine;
/**
* 产线段
*/
private String lineSection;
/**
* 备注
*/

View File

@@ -28,6 +28,16 @@ public class EqpEquipmentPartBo extends BaseEntity {
*/
private String inspectPart;
/**
* 产线
*/
private String productionLine;
/**
* 产线段
*/
private String lineSection;
/**
* 备注
*/

View File

@@ -33,6 +33,18 @@ public class EqpEquipmentPartVo {
@ExcelProperty(value = "巡检部位")
private String inspectPart;
/**
* 产线
*/
@ExcelProperty(value = "产线")
private String productionLine;
/**
* 产线段
*/
@ExcelProperty(value = "产线段")
private String lineSection;
/**
* 备注
*/