| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | | * @description: 党员双争双评排序 |
| | |
| | | public interface NewFightCommunityConstructionDAO extends BaseMapper<NewFightCommunityConstructionDTO> |
| | | { |
| | | |
| | | IPage<NewFightCommunityConstructionDTO> getList(Page page); |
| | | IPage<NewFightCommunityConstructionDTO> getList(Page page, |
| | | @Param("communityId") String communityId, |
| | | @Param("userId") String userId); |
| | | |
| | | NewFightCommunityConstructionDTO getDetails(@Param("id")String id); |
| | | NewFightCommunityConstructionDTO getDetails(@Param("id")String id,@Param("userId") String userId); |
| | | |
| | | int addData(@Param("item") NewFightCommunityConstructionDTO item); |
| | | |
| | |
| | | |
| | | int expurgateData(@Param("id") String id); |
| | | |
| | | List<NewFightCommunityConstructionDTO> getListTime(); |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |