12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package com.fuint.common.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.fuint.common.dto.PointDto;
- import com.fuint.framework.exception.BusinessCheckException;
- import com.fuint.framework.pagination.PaginationRequest;
- import com.fuint.framework.pagination.PaginationResponse;
- import com.fuint.repository.model.MtPoint;
- /**
- * 积分业务接口
- *
- * Created by FSQ
- * CopyRight https://www.fuint.cn
- */
- public interface PointService extends IService<MtPoint> {
- /**
- * 分页查询积分列表
- *
- * @param paginationRequest
- * @return
- */
- PaginationResponse<PointDto> queryPointListByPagination(PaginationRequest paginationRequest) throws BusinessCheckException;
- /**
- * 添加积分
- *
- * @param reqPointDto
- * @throws BusinessCheckException
- * @return
- */
- void addPoint(MtPoint reqPointDto) throws BusinessCheckException;
- /**
- * 转赠积分
- *
- * @param userId
- * @param mobile
- * @param amount
- * @param remark
- * @throws BusinessCheckException
- * @return
- */
- boolean doGift(Integer userId, String mobile, Integer amount, String remark) throws BusinessCheckException;
- }
|