package com.panzhihua.service_community.dao;
|
|
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
|
* @description: 房屋
|
* @author: huang.hongfa weixin hhf9596 qq 959656820
|
* @create: 2020-12-14 17:09
|
**/
|
@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);
|
}
|