Commit 1f64a49b authored by yanghao's avatar yanghao

fix: #802 【客户】2. 新增/编辑客户,主营类别和是多选

parent b1082215
...@@ -43,8 +43,8 @@ public class CustomerCreateReqVO extends CustomerBaseVO { ...@@ -43,8 +43,8 @@ public class CustomerCreateReqVO extends CustomerBaseVO {
@ApiModelProperty(value = "联系地址") @ApiModelProperty(value = "联系地址")
private String address; private String address;
@ApiModelProperty(value = "产品类型id") @ApiModelProperty(value = "产品类型ids,多个逗号分隔")
private Long productType; private String productTypes;
@ApiModelProperty(value = "产品ids") @ApiModelProperty(value = "产品ids")
private String productIds; private String productIds;
......
...@@ -50,8 +50,8 @@ public class CustomerUpdateReqVO extends CustomerBaseVO { ...@@ -50,8 +50,8 @@ public class CustomerUpdateReqVO extends CustomerBaseVO {
@ApiModelProperty(value = "联系地址") @ApiModelProperty(value = "联系地址")
private String address; private String address;
@ApiModelProperty(value = "产品类型") @ApiModelProperty(value = "产品类型ids,多个逗号分隔")
private Long productType; private String productTypes;
@ApiModelProperty(value = "产品ids") @ApiModelProperty(value = "产品ids")
private String productIds; private String productIds;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment