mitao
2025-03-31 ce396f73fa41c66cbdb02c61cafa90b08f41ab48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.dsh.activity.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dsh.activity.entity.THuiminAgreement;
import com.dsh.activity.entity.THuiminCard;
import com.dsh.activity.model.response.HuiminCardVO;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @date 2023/7/11 17:30
 */
public interface HuiminCardMapper extends BaseMapper<THuiminCard> {
 
    List<THuiminCard> getHuiminAgreementAndList(@Param("pageNo") Integer pageNo,@Param("pageSize") Integer pageSize , @Param("storeId")Integer storeId);
}