意向店铺信息添加

This commit is contained in:
苏竹红
2023-06-25 09:50:14 +08:00
parent 20d591c7e4
commit b63a69e616
3 changed files with 49 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ public class PartnerIntentInfoRequest {
private Integer isHaveWantShop;
@ApiModelProperty("意向铺位信息,json字段,最多5个")
private String wantShopInfo;
private List<WantShopInfoRequest> wantShopInfo;
@ApiModelProperty("最大预算")
private String maxBudget;

View File

@@ -0,0 +1,45 @@
package com.cool.store.request;
import lombok.Data;
import java.util.List;
/**
* @Author suzhuhong
* @Date 2023/6/21 22:07
* @Version 1.0
*/
@Data
public class WantShopInfoRequest {
private ShopInfo shopInfo;
private String uuid;
@Data
static class ShopInfo{
private ShopAddress shopAddress;
private String storeIsTakeDown;
private String takeDown;
}
@Data
static class ShopAddress{
private String address;
private String longitude;
private String latitude;
}
}