e05a1c0de8385ea45fce48e7e94b72d99d578c86.svn-base 791 B

123456789101112131415161718192021222324252627
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.dto.AttStstnBaseDto;
  4. import cn.com.goldenwater.dcproj.model.AttStstnBase;
  5. import cn.com.goldenwater.dcproj.model.BisInspQymtenEffc;
  6. import cn.com.goldenwater.dcproj.param.AttStstnBaseParam;
  7. import cn.com.goldenwater.dcproj.param.BisInspQymtenEffcParam;
  8. import com.github.pagehelper.PageInfo;
  9. import java.util.List;
  10. /**
  11. * @author lhc
  12. * @date 2021-7-19
  13. */
  14. public interface BisInspQymtenEffcService extends CrudService<BisInspQymtenEffc, BisInspQymtenEffcParam> {
  15. PageInfo notInsertList(AttStstnBaseParam attStstnBaseParam);
  16. void batchAdd(AttStstnBaseDto attStstnBaseDto);
  17. // ------------------------- 自定方法 -------------------------
  18. }