| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.service_community.model.dos.ComMngStructHouseDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Options; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.apache.ibatis.mapping.StatementType; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | |
| | | **/ |
| | | @Mapper |
| | | public interface ComMngStructHouseDAO extends BaseMapper<ComMngStructHouseDO> { |
| | | @Select("{call smart_life.removeByParentCode(#{areaCode,jdbcType=VARCHAR,mode=IN})}") |
| | | @Options(statementType = StatementType.CALLABLE) |
| | | int batchDeleteHouse(String areaCode); |
| | | } |