| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | | * @description: 党员双争双评排序 |
| | |
| | | public interface NeedProblemClaimDAO extends BaseMapper<NeedProblemClaimDTO> |
| | | { |
| | | |
| | | IPage<NeedProblemClaimDTO> getList(@Param("taskId") String taskId, |
| | | @Param("userId") String userId, |
| | | @Param("unitId") String unitId); |
| | | List<NeedProblemClaimDTO> getList(@Param("taskId") String taskId, |
| | | @Param("userId") String userId, |
| | | @Param("unitId") String unitId); |
| | | |
| | | NeedProblemClaimDTO getDetails(@Param("id")String id); |
| | | |