mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 21:15:06 +08:00
update 会员组
This commit is contained in:
@@ -2,20 +2,21 @@ package com.jsowell.pile.mapper;
|
||||
|
||||
import com.jsowell.pile.domain.MemberGroup;
|
||||
import com.jsowell.pile.vo.web.MemberGroupVO;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 会员组Mapper接口
|
||||
*
|
||||
*
|
||||
* @author jsowell
|
||||
* @date 2023-12-26
|
||||
*/
|
||||
public interface MemberGroupMapper
|
||||
{
|
||||
@Repository
|
||||
public interface MemberGroupMapper {
|
||||
/**
|
||||
* 查询会员组
|
||||
*
|
||||
*
|
||||
* @param id 会员组主键
|
||||
* @return 会员组
|
||||
*/
|
||||
@@ -23,7 +24,7 @@ public interface MemberGroupMapper
|
||||
|
||||
/**
|
||||
* 查询会员组列表
|
||||
*
|
||||
*
|
||||
* @param memberGroup 会员组
|
||||
* @return 会员组集合
|
||||
*/
|
||||
@@ -31,7 +32,7 @@ public interface MemberGroupMapper
|
||||
|
||||
/**
|
||||
* 新增会员组
|
||||
*
|
||||
*
|
||||
* @param memberGroup 会员组
|
||||
* @return 结果
|
||||
*/
|
||||
@@ -39,7 +40,7 @@ public interface MemberGroupMapper
|
||||
|
||||
/**
|
||||
* 修改会员组
|
||||
*
|
||||
*
|
||||
* @param memberGroup 会员组
|
||||
* @return 结果
|
||||
*/
|
||||
@@ -47,7 +48,7 @@ public interface MemberGroupMapper
|
||||
|
||||
/**
|
||||
* 删除会员组
|
||||
*
|
||||
*
|
||||
* @param id 会员组主键
|
||||
* @return 结果
|
||||
*/
|
||||
@@ -55,7 +56,7 @@ public interface MemberGroupMapper
|
||||
|
||||
/**
|
||||
* 批量删除会员组
|
||||
*
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user