取消IOT字段

This commit is contained in:
majian314
2025-09-26 08:37:13 +08:00
parent cdbc6aef58
commit 9528a8315c
4 changed files with 17 additions and 28 deletions

View File

@ -79,7 +79,6 @@ public class ZcCar extends BaseEntity
private String iotStatus; private String iotStatus;
/** IoT识别码 */ /** IoT识别码 */
@Excel(name = "IoT识别码")
private String iotCode; private String iotCode;
/** 所属运营商ID */ /** 所属运营商ID */

View File

@ -68,19 +68,14 @@
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">BRS车辆状态:</label> <label class="col-sm-3 control-label">车辆状态:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<select name="brsStatus" class="form-control m-b" th:with="type=${@dict.getType('key_car_brs_status')}"> <select name="brsStatus" class="form-control m-b" th:with="type=${@dict.getType('key_car_brs_status')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option> <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select> </select>
</div> </div>
</div> </div>
<div class="form-group">
<label class="col-sm-3 control-label">IoT识别码</label>
<div class="col-sm-8">
<input name="iotCode" class="form-control" type="text">
</div>
</div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label is-required">所属运营商:</label> <label class="col-sm-3 control-label is-required">所属运营商:</label>

View File

@ -38,7 +38,7 @@
<input type="text" name="storeName"/> <input type="text" name="storeName"/>
</li> </li>
<li> <li>
<label>BRS车辆状态:</label> <label>车辆状态:</label>
<select name="brsStatus" th:with="type=${@dict.getType('key_car_brs_status')}"> <select name="brsStatus" th:with="type=${@dict.getType('key_car_brs_status')}">
<option value="">所有</option> <option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option> <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
@ -148,19 +148,19 @@
}, },
{ {
field: 'brsStatus', field: 'brsStatus',
title: 'BRS车辆状态', title: '车辆状态',
formatter: function(value, row, index) { formatter: function(value, row, index) {
return $.table.selectDictLabel(brsStatusDatas, value); return $.table.selectDictLabel(brsStatusDatas, value);
} }
}, },
{ // {
field: 'iotStatus', // field: 'iotStatus',
title: 'IoT设备状态' // title: 'IoT设备状态'
}, // },
{ // {
field: 'iotCode', // field: 'iotCode',
title: 'IoT识别码' // title: 'IoT识别码'
}, // },
{ {
field: 'operatorName', field: 'operatorName',
title: '所属运营商' title: '所属运营商'

View File

@ -70,19 +70,14 @@
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">BRS车辆状态:</label> <label class="col-sm-3 control-label">车辆状态:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<select name="brsStatus" class="form-control m-b" th:with="type=${@dict.getType('key_car_brs_status')}"> <select name="brsStatus" class="form-control m-b" th:with="type=${@dict.getType('key_car_brs_status')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{brsStatus}"></option> <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{brsStatus}"></option>
</select> </select>
</div> </div>
</div> </div>
<div class="form-group">
<label class="col-sm-3 control-label">IoT识别码</label>
<div class="col-sm-8">
<input name="iotCode" th:field="*{iotCode}" class="form-control" type="text">
</div>
</div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label is-required">所属运营商:</label> <label class="col-sm-3 control-label is-required">所属运营商:</label>