38 lines
980 B
Java
38 lines
980 B
Java
package com.gxwebsoft.love.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.gxwebsoft.love.entity.UserPlanEquity;
|
|
import com.gxwebsoft.love.param.UserPlanEquityParam;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 会员套餐管理表Mapper
|
|
*
|
|
* @author 科技小王子
|
|
* @since 2023-06-23 12:02:58
|
|
*/
|
|
public interface UserPlanEquityMapper extends BaseMapper<UserPlanEquity> {
|
|
|
|
/**
|
|
* 分页查询
|
|
*
|
|
* @param page 分页对象
|
|
* @param param 查询参数
|
|
* @return List<UserPlanEquity>
|
|
*/
|
|
List<UserPlanEquity> selectPageRel(@Param("page") IPage<UserPlanEquity> page,
|
|
@Param("param") UserPlanEquityParam param);
|
|
|
|
/**
|
|
* 查询全部
|
|
*
|
|
* @param param 查询参数
|
|
* @return List<User>
|
|
*/
|
|
List<UserPlanEquity> selectListRel(@Param("param") UserPlanEquityParam param);
|
|
|
|
}
|