package com.panzhihua.service_community.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Options; import org.apache.ibatis.annotations.Select; import org.apache.ibatis.mapping.StatementType; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.panzhihua.common.model.dtos.community.ExcelHouseDTO; import com.panzhihua.service_community.model.dos.ComMngStructHouseDO; /** * @program: springcloud_k8s_panzhihuazhihuishequ * @description: 房屋 * @author: huang.hongfa weixin hhf9596 qq 959656820 * @create: 2020-12-14 17:09 **/ @Mapper public interface ComMngStructHouseDAO extends BaseMapper { @Select("{call smart_life.removeByParentCode(#{areaCode,jdbcType=VARCHAR,mode=IN})}") @Options(statementType = StatementType.CALLABLE) int batchDeleteHouse(String areaCode); @Select(" ") List houseExport(String houseCode); }