| | |
| | | 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); |
| | | |
| | |
| | | import com.panzhihua.common.model.vos.R; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | | * @description: 党组织 |
| | |
| | | public interface NeedProblemClaimService |
| | | { |
| | | |
| | | IPage<NeedProblemClaimDTO> getList(String taskId, String userId,String unitId); |
| | | List<NeedProblemClaimDTO> getList(String taskId, String userId, String unitId); |
| | | |
| | | NeedProblemClaimDTO getDetails(String id); |
| | | |
| | |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | |
| | | private NeedProblemInventoryService inventoryService; |
| | | |
| | | @Override |
| | | public IPage<NeedProblemClaimDTO> getList(String taskId, String userId,String unitId) |
| | | public List<NeedProblemClaimDTO> getList(String taskId, String userId, String unitId) |
| | | { |
| | | // Page page = new Page<>(pageNum,pageSize); |
| | | return baseMapper.getList(taskId,userId,unitId); |