diff --git a/src/main/java/com/yxt/yythmall/biz/customerstore/CustomerStoreService.java b/src/main/java/com/yxt/yythmall/biz/customerstore/CustomerStoreService.java index 97966bc..4463a76 100644 --- a/src/main/java/com/yxt/yythmall/biz/customerstore/CustomerStoreService.java +++ b/src/main/java/com/yxt/yythmall/biz/customerstore/CustomerStoreService.java @@ -143,7 +143,7 @@ public class CustomerStoreService extends MybatisBaseService map = new HashMap<>(); map.put("unionid",unionid); diff --git a/src/main/java/com/yxt/yythmall/biz/lpkcustomer/WxResult.java b/src/main/java/com/yxt/yythmall/biz/lpkcustomer/WxResult.java new file mode 100644 index 0000000..38516d3 --- /dev/null +++ b/src/main/java/com/yxt/yythmall/biz/lpkcustomer/WxResult.java @@ -0,0 +1,14 @@ +package com.yxt.yythmall.biz.lpkcustomer; + +import lombok.Data; + +/** + * @author wangpengfei + * @date 2024/12/16 11:00 + */ +@Data +public class WxResult { + private String unionid; + private String openid; + private String session_key; +}