p-honggang.li
2025-08-20 fefed50bf97060a82aabd09e090fa08ce532532f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.webmanage.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.webmanage.entity.PointsRule;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.web.bind.annotation.RequestParam;
 
import java.util.List;
 
/**
 * 积分规则Mapper接口
 * 
 * @author webmanage
 * @date 2024-08-07
 */
@Mapper
public interface PointsRuleMapper extends BaseMapper<PointsRule> {
 
}