边带设备信号去除必填校验
This commit is contained in:
parent
e2954efa07
commit
93b0023ac8
|
|
@ -51,7 +51,6 @@ public class DeviceBdChildVo {
|
||||||
private String updateTime;
|
private String updateTime;
|
||||||
|
|
||||||
@ApiModelProperty(value = "设备信号")
|
@ApiModelProperty(value = "设备信号")
|
||||||
@NotBlank(message = "设备信号不能为空", groups = {Query.class})
|
|
||||||
@Length(max = 50, message = "设备信号字符长度不能超过50", groups = {Query.class})
|
@Length(max = 50, message = "设备信号字符长度不能超过50", groups = {Query.class})
|
||||||
private String deviceModel;
|
private String deviceModel;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@
|
||||||
<if test="createTime != null and createTime!=''">create_time,</if>
|
<if test="createTime != null and createTime!=''">create_time,</if>
|
||||||
<if test="updateTime != null and updateTime!=''">update_time,</if>
|
<if test="updateTime != null and updateTime!=''">update_time,</if>
|
||||||
del_flag,
|
del_flag,
|
||||||
<if test="updateTime != null and updateTime!=''">device_model,</if>
|
<if test="deviceModel != null and deviceModel!=''">device_model,</if>
|
||||||
<if test="bdId != null and bdId!=''">bd_id,</if>
|
<if test="bdId != null and bdId!=''">bd_id,</if>
|
||||||
<if test="areaId != null and areaId!=''">area_id,</if>
|
<if test="areaId != null and areaId!=''">area_id,</if>
|
||||||
<if test="gtId != null and gtId!=''">gt_id,</if>
|
<if test="gtId != null and gtId!=''">gt_id,</if>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue