mirror of
https://codeup.aliyun.com/64f7d6b8ce01efaafef1e678/coal/coal.git
synced 2026-07-25 23:27:07 +08:00
feat(coal-parameter-def): 添加化验和配煤启用状态字段- 在 CoalParameterDefDto、CreateCoalParameterDefDto、UpdateCoalParameterDefDto 和 CoalParameterDefEntity 类中添加 labEnabled 和 coalBlendEnabled 字段
- 用于表示化验和配煤是否启用的状态
This commit is contained in:
@@ -22,4 +22,11 @@ public class CoalParameterDefDto extends OrgCommonDto {
|
||||
|
||||
@Comment("计算公式")
|
||||
private String formula;
|
||||
|
||||
@Comment("化验是否启用")
|
||||
private Boolean labEnabled;
|
||||
|
||||
|
||||
@Comment("配煤是否启用")
|
||||
private Boolean coalBlendEnabled;
|
||||
}
|
||||
|
||||
@@ -17,4 +17,11 @@ public class CreateCoalParameterDefDto extends OrgCommonDto {
|
||||
|
||||
@Comment("计算公式")
|
||||
private String formula;
|
||||
|
||||
@Comment("化验是否启用")
|
||||
private Boolean labEnabled;
|
||||
|
||||
|
||||
@Comment("配煤是否启用")
|
||||
private Boolean coalBlendEnabled;
|
||||
}
|
||||
|
||||
@@ -17,4 +17,12 @@ public class UpdateCoalParameterDefDto extends OrgCommonDto {
|
||||
|
||||
@Comment("计算公式")
|
||||
private String formula;
|
||||
|
||||
|
||||
@Comment("化验是否启用")
|
||||
private Boolean labEnabled;
|
||||
|
||||
|
||||
@Comment("配煤是否启用")
|
||||
private Boolean coalBlendEnabled;
|
||||
}
|
||||
|
||||
@@ -34,4 +34,12 @@ public class CoalParameterDefEntity extends OrgCommonEntity {
|
||||
|
||||
@Comment("计算优先级")
|
||||
private Integer priority;
|
||||
|
||||
|
||||
@Comment("化验是否启用")
|
||||
private Boolean labEnabled;
|
||||
|
||||
|
||||
@Comment("配煤是否启用")
|
||||
private Boolean coalBlendEnabled;
|
||||
}
|
||||
Reference in New Issue
Block a user