feat:外部接口接入

This commit is contained in:
苏竹红
2025-04-02 09:16:43 +08:00
parent a54644b8bd
commit d4cb86b415
7 changed files with 333 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
package com.cool.store.request.huoma;
import lombok.Data;
/**
* @Author suzhuhong
* @Date 2025/4/1 23:15
* @Version 1.0
*/
@Data
public class ShopBasicInfoRequest {
private String shop_sn;
}

View File

@@ -0,0 +1,22 @@
package com.cool.store.response.huoma;
import lombok.Data;
/**
* @Author suzhuhong
* @Date 2025/4/1 23:19
* @Version 1.0
*/
@Data
public class ShopBaseInfoResponse {
private String id;
private String name;
private String sn;
private String address;
private String province;
private String city;
private String region;
private String lnglat;
}