IBindingSMO.java 388 B

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