| 12345678910111213141516171819202122 |
- 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.BisNewCountryFee;
- import cn.com.goldenwater.dcproj.param.BisNewCountryFeeParam;
- import cn.com.goldenwater.dcproj.param.CwsParam;
- import com.github.pagehelper.PageInfo;
- /**
- * @author lune
- * @date 2020-3-27
- */
- public interface BisNewCountryFeeService extends CrudService<BisNewCountryFee, BisNewCountryFeeParam> {
- PageInfo<AttCwsBase> pageNotDC(CwsParam cwsParam);
- // ------------------------- 自定方法 -------------------------
- }
|