linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
src/main/java/org/springblade/modules/house/mapper/UserHouseLabelMapper.java
@@ -18,9 +18,11 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
import org.springblade.modules.house.dto.UserHouseLabelDTO;
import org.springblade.modules.house.entity.UserHouseLabelEntity;
import org.springblade.modules.house.vo.HouseholdLabelVO;
import org.springblade.modules.house.vo.UserHouseLabelVO;
import java.util.List;
@@ -43,5 +45,39 @@
   List<Integer> getUserLabelList(UserHouseLabelDTO userHouseLabelDTO);
   List<HouseholdLabelVO> statisticalLabels(IPage page, HouseholdLabelVO householdLabel);
   List<HouseholdLabelVO> statisticalLabels(IPage page, @Param("householdLabel") HouseholdLabelVO householdLabel);
   /**
    * 组织部
    * @param page
    * @param householdLabel
    * @return
    */
   List<HouseholdLabelVO> orgStatisticalLabels(IPage page, @Param("householdLabel") HouseholdLabelVO householdLabel);
   /**
    * 统战人员
    * @param page
    * @param householdLabel
    * @return
    */
   List<HouseholdLabelVO> unitedFrontStatisticalLabels(IPage page, @Param("householdLabel") HouseholdLabelVO householdLabel);
   List<HouseholdLabelVO> getCommunityStatisticalLabels(IPage<HouseholdLabelVO> page, HouseholdLabelVO householdLabel);
   /**
    * 查询对应的label集合信息
    * @param labelName
    * @return
    */
    List<UserHouseLabelEntity> getLabelList(@Param("labelNames") String labelName);
   List<HouseholdLabelVO> followStatisticalLabels(IPage page, @Param("householdLabel") HouseholdLabelVO householdLabel);
   /**
    *
    * @param userHouseLabelVO
    * @return
    */
    List<UserHouseLabelEntity> getUserHouseLabelList(@Param("userHouseLabelVO")  UserHouseLabelVO userHouseLabelVO);
}