feat(plcSchemaDetail): 添加关联生产数据字段和备用字段

- 在 CreatePlcSchemaDetailDto、PlcSchemaDetailDto、UpdatePlcSchemaDetailDto 和 PlcSchemaDetailEntity 类中添加了以下字段:
  - reportDataField(关联生产数据字段)
  - revField1(备用字段1)
  - revField2(备用字段2)  - revField3(备用字段3)
  - revField4(备用字段4)
  - revField5(备用字段5)
-这些字段用于扩展 PLC 方案详情的功能,提供更多的数据关联和备用数据存储能力
This commit is contained in:
2025-06-10 21:49:59 +08:00
parent 20c39ed540
commit 497fd6771e
4 changed files with 85 additions and 0 deletions

View File

@@ -31,5 +31,26 @@ public class CreatePlcSchemaDetailDto extends OrgCommonDto {
@Comment("是否作为查询条件")
private Boolean queryCondition;
@Comment("关联生产数据字段")
private String reportDataField;
@Comment("备用字段1")
private String revField1;
@Comment("备用字段2")
private String revField2;
@Comment("备用字段3")
private String revField3;
@Comment("备用字段4")
private String revField4;
@Comment("备用字段5")
private String revField5;
}

View File

@@ -38,4 +38,25 @@ public class PlcSchemaDetailDto extends OrgCommonDto {
@Comment("是否作为查询条件")
private Boolean queryCondition;
@Comment("关联生产数据字段")
private String reportDataField;
@Comment("备用字段1")
private String revField1;
@Comment("备用字段2")
private String revField2;
@Comment("备用字段3")
private String revField3;
@Comment("备用字段4")
private String revField4;
@Comment("备用字段5")
private String revField5;
}

View File

@@ -33,4 +33,25 @@ public class UpdatePlcSchemaDetailDto extends OrgCommonDto {
@Comment("是否作为查询条件")
private Boolean queryCondition;
@Comment("关联生产数据字段")
private String reportDataField;
@Comment("备用字段1")
private String revField1;
@Comment("备用字段2")
private String revField2;
@Comment("备用字段3")
private String revField3;
@Comment("备用字段4")
private String revField4;
@Comment("备用字段5")
private String revField5;
}

View File

@@ -45,4 +45,26 @@ public class PlcSchemaDetailEntity extends OrgCommonEntity {
@Comment("是否作为查询条件")
private Boolean queryCondition;
@Comment("关联生产数据字段")
private String reportDataField;
@Comment("备用字段1")
private String revField1;
@Comment("备用字段2")
private String revField2;
@Comment("备用字段3")
private String revField3;
@Comment("备用字段4")
private String revField4;
@Comment("备用字段5")
private String revField5;
}