| 123456789101112131415161718192021222324 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.AttCwsBase;
- import cn.com.goldenwater.dcproj.model.BisZhejiangCountryFee;
- import cn.com.goldenwater.dcproj.param.BisZhejiangCountryFeeParam;
- import cn.com.goldenwater.dcproj.param.CwsParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lune
- * @date 2020-5-11
- */
- public interface BisZhejiangCountryFeeService extends CrudService<BisZhejiangCountryFee, BisZhejiangCountryFeeParam> {
- void updateWaterOrPay(String rgstrId);
- PageInfo<AttCwsBase> pageNotDC(CwsParam cwsParam);
- // ------------------------- 自定方法 -------------------------
- }
|