31735cfb26ce5460d0996daac4287d132f160c91.svn-base 726 B

123456789101112131415161718192021222324
  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.BisZhejiangCountryFee;
  5. import cn.com.goldenwater.dcproj.param.BisZhejiangCountryFeeParam;
  6. import cn.com.goldenwater.dcproj.param.CwsParam;
  7. import com.github.pagehelper.PageInfo;
  8. import java.util.List;
  9. /**
  10. * @author lune
  11. * @date 2020-5-11
  12. */
  13. public interface BisZhejiangCountryFeeService extends CrudService<BisZhejiangCountryFee, BisZhejiangCountryFeeParam> {
  14. void updateWaterOrPay(String rgstrId);
  15. PageInfo<AttCwsBase> pageNotDC(CwsParam cwsParam);
  16. // ------------------------- 自定方法 -------------------------
  17. }