f0eeb970d7473330587ca9066775879e4470e617.svn-base 662 B

1234567891011121314151617181920212223
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.BisInspVillqhRgstrRelVill;
  4. import cn.com.goldenwater.dcproj.param.BisInspVillqhRgstrRelVillParam;
  5. import cn.com.goldenwater.dcproj.param.CountryParam;
  6. import java.util.List;
  7. /**
  8. * @author lhc
  9. * @date 2021-2-1
  10. */
  11. public interface BisInspVillqhRgstrRelVillService extends CrudService<BisInspVillqhRgstrRelVill, BisInspVillqhRgstrRelVillParam> {
  12. /**
  13. * 批量添加行政村
  14. * @param countryParamList
  15. * @return
  16. */
  17. List<CountryParam> addbatch(List<CountryParam> countryParamList, String persId);
  18. }