801d5c77aca67662da5d8fcd278c344f22102cb5.svn-base 561 B

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