linwei
2024-01-25 1e1ac1094bed879070b751e0622a639bb217008e
src/main/java/org/springblade/modules/house/mapper/HouseholdMapper.java
@@ -18,7 +18,9 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.MapKey;
import org.apache.ibatis.annotations.Param;
import org.springblade.common.node.TreeIntegerNode;
import org.springblade.common.node.TreeStringNode;
import org.springblade.modules.house.entity.HouseholdEntity;
import org.springblade.modules.house.excel.HouseHoldExcel;
@@ -50,6 +52,7 @@
   /**
    * 获取全部
    *
    * @param household
    * @return
    */
@@ -58,6 +61,7 @@
   /**
    * 查询房屋集合信息
    *
    * @param userId
    * @return
    */
@@ -65,6 +69,7 @@
   /**
    * 查询房屋人员情况
    *
    * @param code
    * @return
    */
@@ -72,6 +77,7 @@
   /**
    * 住户 自定义查询详情
    *
    * @param household
    * @return
    */
@@ -79,6 +85,7 @@
   /**
    * 导出
    *
    * @param household
    * @return
    */
@@ -88,6 +95,7 @@
   /**
    * 查询物业
    *
    * @param household
    * @return
    */
@@ -95,6 +103,7 @@
   /**
    * 查询网格
    *
    * @param household
    * @return
    */
@@ -102,6 +111,7 @@
   /**
    * 查询公安信息
    *
    * @param household
    * @return
    */
@@ -113,6 +123,7 @@
   /**
    * 查询所有未入库的业主信息
    *
    * @return
    */
   List<HouseholdEntity> getNotInsertUserHousehold();
@@ -129,8 +140,12 @@
   /**
    * 根据人员标签编号集合查询对应的住户(按颜色区分近多少天没有发过任务的住户)
    *
    * @param list
    * @return
    */
   List<HouseholdVO> getHouseholdListByParam(@Param("list") List<Integer> list);
   @MapKey(value = "id")
   Map<Integer, TreeIntegerNode> getlabelStatistics(@Param("household") HouseholdVO household);
}