IExportService.java 242 B

123456789101112131415
  1. package com.gqy.document.service;
  2. import com.gqy.common.core.domain.AjaxResultCQY;
  3. /**
  4. * excel
  5. */
  6. public interface IExportService {
  7. /**
  8. * 导出HTML内容为Word文档
  9. */
  10. public AjaxResultCQY export(String content);
  11. }