2fee805e9c26038ff9def9d41b0b3a4f7c338da0.svn-base 635 B

12345678910111213141516171819202122
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.AttCwsBase;
  4. import cn.com.goldenwater.dcproj.model.BisNewCountryFee;
  5. import cn.com.goldenwater.dcproj.param.BisNewCountryFeeParam;
  6. import cn.com.goldenwater.dcproj.param.CwsParam;
  7. import com.github.pagehelper.PageInfo;
  8. /**
  9. * @author lune
  10. * @date 2020-3-27
  11. */
  12. public interface BisNewCountryFeeService extends CrudService<BisNewCountryFee, BisNewCountryFeeParam> {
  13. PageInfo<AttCwsBase> pageNotDC(CwsParam cwsParam);
  14. // ------------------------- 自定方法 -------------------------
  15. }