Merge #129 into master from cc_20260512_point_zx

新增机会点返回门店列表字段

* cc_20260512_point_zx: (1 commits squashed)

  - Add OpportunityInfoResponseStore class and update OpportunityInfoPageResponse

Signed-off-by: 王非凡 <accounts_67eba0c5fee9c49c80c8e2b4@mail.teambition.com>
Merged-by: 正新 <accounts_6964c7bcd2a2c377c5bbd01b@mail.teambition.com>

CR-link: https://codeup.aliyun.com/692ea314dec569489f6f167c/hangzhou/java/custom_zxjp/change/129
This commit is contained in:
王非凡
2026-05-12 09:05:52 +00:00
committed by 正新
parent 20f063dc55
commit e667f2b577
2 changed files with 16 additions and 1 deletions

View File

@@ -19,6 +19,6 @@ public class OpportunityInfoPageResponse {
private List<OpportunityInfoResponse> pageData; private List<OpportunityInfoResponse> pageData;
private List<OpportunityInfoResponseStore> zhengXinStores;
} }

View File

@@ -0,0 +1,15 @@
package com.cool.store.response.oppty;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class OpportunityInfoResponseStore {
@ApiModelProperty("门店编码")
private String storeSn;
@ApiModelProperty("门店坐标,经纬度,隔开")
private String location;
@ApiModelProperty("门店名称")
private String storeName;
}