分销店铺确认信息

This commit is contained in:
2026-03-06 13:36:40 +08:00
parent a53911aaa5
commit d052721b9b
5 changed files with 33 additions and 5 deletions

View File

@@ -33,5 +33,7 @@ public class ShopUserEditDTO {
*/
@Size(min = 1, message = "手机号不为空")
private String phone;
//分销店铺确认
private String shopConfirm;
private Integer status;
}

View File

@@ -151,6 +151,8 @@ public class ShopUser implements Serializable {
private LocalDateTime nextDeliverTime;
// 是否分销员
private String distributionShops;
//分销店铺确认
private String shopConfirm;
private String memberCircleName;
private Integer memberCircleReward;

View File

@@ -1,12 +1,12 @@
package com.czg.account.service;
import com.czg.account.dto.shopuser.*;
import com.czg.account.dto.shopuser.ShopUserAddDTO;
import com.czg.account.dto.shopuser.ShopUserDetailDTO;
import com.czg.account.dto.shopuser.ShopUserMoneyEditDTO;
import com.czg.account.dto.shopuser.ShopUserVipCardDTO;
import com.czg.account.entity.ShopUser;
import com.czg.resp.CzgResult;
import com.mybatisflex.core.paginate.Page;
import com.mybatisflex.core.service.IService;
import java.math.BigDecimal;
/**
* 商户储值会员 服务层。
@@ -16,6 +16,11 @@ import java.math.BigDecimal;
*/
public interface UShopUserService {
/**
* 获取服务层。
*/
ShopUserService getService();
ShopUser getShopUserInfo(Long shopId, long userId);
/**