2023-06-06-01-bug

master
喻忠伟 2 years ago
parent 23cf772c66
commit 28f88603d4
  1. 5
      ant-design-vue-jeecg/src/views/device/ZyDeviceList.vue
  2. 5
      ant-design-vue-jeecg/src/views/device/modules/ZyDeviceForm.vue
  3. 3
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/device/entity/ZyDevice.java

@ -218,6 +218,11 @@
align:"center",
dataIndex: 'status_dictText'
},
{
title:'设备日负载',
align:"center",
dataIndex: 'val'
},
{
title:'维护周期',
align:"center",

@ -54,6 +54,11 @@
placeholder="设备状态"></j-dict-select-tag>
</a-form-model-item>
</a-col>
<a-col :span="24">
<a-form-model-item label="设备日负载" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="val">
<a-input v-model="model.val" placeholder="设备日负载" ></a-input>
</a-form-model-item>
</a-col>
<a-col :span="24">
<a-form-model-item label="维护周期" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="maintenancecycle">
<a-input v-model="model.maintenancecycle" placeholder="请输入维护周期" ></a-input>

@ -123,4 +123,7 @@ public class ZyDevice implements Serializable {
@ApiModelProperty(value = "设备名称")
private String name;
@ApiModelProperty(value = "设备日负载")
private Integer val;
}

Loading…
Cancel
Save