| 1234567891011121314151617181920212223 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspVillqhRgstrRelVill;
- import cn.com.goldenwater.dcproj.param.BisInspVillqhRgstrRelVillParam;
- import cn.com.goldenwater.dcproj.param.CountryParam;
- import java.util.List;
- /**
- * @author lhc
- * @date 2021-2-1
- */
- public interface BisInspVillqhRgstrRelVillService extends CrudService<BisInspVillqhRgstrRelVill, BisInspVillqhRgstrRelVillParam> {
- /**
- * 批量添加行政村
- * @param countryParamList
- * @return
- */
- List<CountryParam> addbatch(List<CountryParam> countryParamList, String persId);
- }
|