会员等级问题
This commit is contained in:
@@ -42,6 +42,10 @@ public interface ShopUserService extends IService<ShopUser> {
|
||||
Page<InviteUserVO> getInviteUser(Long getDistributionUserId, Long shopId, Long shopUserId, Long distributionLevelId, Integer page, Integer size);
|
||||
|
||||
boolean updateInfo(ShopUser shopUser);
|
||||
/**
|
||||
* 修改会员等级id 不忽略Null值
|
||||
*/
|
||||
void upMemberLevel(Long newMemberLevelId, Long oldMemberLevelId);
|
||||
|
||||
List<ShopUser> selectBirthdayUser(LocalDate current, Long mainShopId, String userType);
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
package com.czg.market.service;
|
||||
|
||||
import com.czg.market.entity.MemberLevelConfig;
|
||||
import com.czg.market.vo.MemberLevelVO;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.czg.market.entity.MemberLevelConfig;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
@@ -15,5 +15,8 @@ import java.util.ArrayList;
|
||||
public interface MemberLevelConfigService extends IService<MemberLevelConfig> {
|
||||
|
||||
MemberLevelVO detail(Long memberLevelId);
|
||||
|
||||
ArrayList<MemberLevelVO> listInfo(Long shopId);
|
||||
|
||||
Boolean removeLevel(Long id, Long shopId);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user