26fe8fe766d68c56fbbeb71511b496053e0e5545.svn-base 644 B

12345678910111213141516171819202122
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.dto.ExcelInspPblmDto;
  4. import cn.com.goldenwater.dcproj.model.ImpPblmInfo;
  5. import cn.com.goldenwater.dcproj.param.ImpPblmInfoParam;
  6. import com.github.pagehelper.PageInfo;
  7. import java.util.List;
  8. /**
  9. * @author lune
  10. * @date 2019-7-23
  11. */
  12. public interface ImpPblmInfoService extends CrudService<ImpPblmInfo, ImpPblmInfoParam> {
  13. // ------------------------- 自定方法 -------------------------
  14. String insertList(List<ImpPblmInfo> list, String mnth);
  15. String handleRsData(String mnth, String orgId);
  16. }