边带设备信号去除必填校验

This commit is contained in:
cwchen 2024-06-20 10:47:02 +08:00
parent e2954efa07
commit 93b0023ac8
2 changed files with 1 additions and 2 deletions

View File

@ -51,7 +51,6 @@ public class DeviceBdChildVo {
private String updateTime;
@ApiModelProperty(value = "设备信号")
@NotBlank(message = "设备信号不能为空", groups = {Query.class})
@Length(max = 50, message = "设备信号字符长度不能超过50", groups = {Query.class})
private String deviceModel;

View File

@ -53,7 +53,7 @@
<if test="createTime != null and createTime!=''">create_time,</if>
<if test="updateTime != null and updateTime!=''">update_time,</if>
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="areaId != null and areaId!=''">area_id,</if>
<if test="gtId != null and gtId!=''">gt_id,</if>