| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.dtos.partybuilding.NeedProblemClaimDTO; |
| | | import com.panzhihua.common.model.dtos.partybuilding.NeedProblemInventoryDTO; |
| | | import com.panzhihua.common.model.dtos.partybuilding.UserRankDTO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | |
| | | public interface NeedProblemInventoryDAO extends BaseMapper<NeedProblemInventoryDTO> |
| | | { |
| | | |
| | | IPage<NeedProblemInventoryDTO> getList(Page page,@Param("kind") String kind, |
| | | @Param("userId") String userId, |
| | | @Param("communityId") String communityId); |
| | | IPage<NeedProblemInventoryDTO> getList(Page page, |
| | | @Param("search") String search, |
| | | @Param("status") String status, |
| | | @Param("kind") String kind, |
| | | @Param("userId") String userId, |
| | | @Param("userIds") String userIds, |
| | | @Param("communityId") String communityId); |
| | | |
| | | IPage<NeedProblemInventoryDTO> getMyJoinList(Page page,@Param("kind") String kind, |
| | | @Param("userId") String userId); |
| | | IPage<NeedProblemInventoryDTO> getMyJoinList(Page page, |
| | | @Param("search") String search, |
| | | @Param("status") String status, |
| | | @Param("kind") String kind, |
| | | @Param("userIds") String userIds, |
| | | @Param("userId") String userId); |
| | | |
| | | NeedProblemInventoryDTO getDetails(@Param("id")String id); |
| | | NeedProblemInventoryDTO getDetails(@Param("id")String id,@Param("userIds") String userIds); |
| | | |
| | | int addData(@Param("item") NeedProblemInventoryDTO userIds); |
| | | |
| | |
| | | |
| | | int expurgateData(@Param("id") String id); |
| | | |
| | | |
| | | List<NeedProblemInventoryDTO> getTimeList(); |
| | | |
| | | } |