| | |
| | | package com.yeshi.fanli.dao.mybatis.integral; |
| | | |
| | | import java.util.List; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import com.yeshi.fanli.dao.BaseMapper; |
| | | import com.yeshi.fanli.entity.integral.IntegralTask; |
| | | |
| | | public interface IntegralTaskMapper extends BaseMapper<IntegralTask> { |
| | | |
| | | /** |
| | | * 查询任务 |
| | | * @param cid |
| | | * @param uniqueKey |
| | | * @return |
| | | */ |
| | | List<IntegralTask> listByCid(@Param("cid")Long cid); |
| | | |
| | | /** |
| | | * 查询任务 |
| | | * @param cid |
| | | * @param uniqueKey |
| | | * @return |
| | | */ |
| | | IntegralTask getByCidAndUniqueKey(@Param("cid")Long cid, @Param("uniqueKey")String uniqueKey); |
| | | |
| | | package com.yeshi.fanli.dao.mybatis.integral;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.yeshi.fanli.dao.BaseMapper;
|
| | | import com.yeshi.fanli.entity.integral.IntegralTask;
|
| | |
|
| | | public interface IntegralTaskMapper extends BaseMapper<IntegralTask> {
|
| | | |
| | | /**
|
| | | * 查询任务
|
| | | * @param cid
|
| | | * @param uniqueKey
|
| | | * @return
|
| | | */
|
| | | List<IntegralTask> listByCid(@Param("cid")Long cid);
|
| | |
|
| | | /**
|
| | | * 查询任务
|
| | | * @param cid
|
| | | * @param uniqueKey
|
| | | * @return
|
| | | */
|
| | | IntegralTask getByCidAndUniqueKey(@Param("cid")Long cid, @Param("uniqueKey")String uniqueKey);
|
| | |
|
| | | } |