浏览代码

更新:
允许经纪人id 为空(相当于经纪人删除功能)

wuweihao 4 年之前
父节点
当前提交
a855b4af26
共有 1 个文件被更改,包括 1 次插入4 次删除
  1. 1 4
      cms_pano_fcb/gis_domain/src/main/java/com/gis/domain/dto/AgentDto.java

+ 1 - 4
cms_pano_fcb/gis_domain/src/main/java/com/gis/domain/dto/AgentDto.java

@@ -17,10 +17,7 @@ public class AgentDto {
     @ApiModelProperty(value = "id", required = true)
     private String id;
 
-    @NotBlank(message = "经济人id能为空")
-    @ApiModelProperty(value = "agentId", required = true)
+    @ApiModelProperty(value = "agentId", notes = "允许为空,置空:为删除经纪人")
     private String agentId;
 
-
-
 }