| 123456789101112131415161718 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.AttWiuWatLic;
- import cn.com.goldenwater.dcproj.param.AttWiuWatLicParam;
- import javax.servlet.http.HttpServletResponse;
- /**
- * @author lune
- * @date 2019-8-9
- */
- public interface AttWiuWatLicService extends CrudService<AttWiuWatLic, AttWiuWatLicParam> {
- void exportAttWiuWatLic(AttWiuWatLicParam attWiuWatLicParam, HttpServletResponse response);
- // ------------------------- 自定方法 -------------------------
- }
|