IAddSMO.java 429 B

1234567891011121314151617181920
  1. package com.java110.web.smo.community;
  2. import com.java110.core.context.IPageData;
  3. import org.springframework.http.ResponseEntity;
  4. /**
  5. * 添加@@templateName@@接口
  6. *
  7. * add by wuxw 2019-06-30
  8. */
  9. public interface IAdd@@TemplateCode@@SMO {
  10. /**
  11. * 添加@@templateName@@
  12. * @param pd 页面数据封装
  13. * @return ResponseEntity 对象
  14. */
  15. ResponseEntity<String> save@@TemplateCode@@(IPageData pd);
  16. }