notice.xml 1019 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <controller name="notice" desc="工作信息通报">
  3. <api name="add_notice" desc="添加通报" method="post">
  4. <return>
  5. <success ref="$sys_return"></success>
  6. <failure ref="$sys_return"></failure>
  7. </return>
  8. </api>
  9. <api name="delete_notice" desc="删除通报" method="post">
  10. <return>
  11. <success ref="$sys_return"></success>
  12. <failure ref="$sys_return"></failure>
  13. </return>
  14. </api>
  15. <api name="update_notice" desc="修改通报" method="post">
  16. <return>
  17. <success ref="$sys_return"></success>
  18. <failure ref="$sys_return"></failure>
  19. </return>
  20. </api>
  21. <api name="get_notice" desc="获取通报" method="post">
  22. <param name="" desc="分页参数" ref="$get_page_info"></param>
  23. <return>
  24. <success ref="$sys_return"></success>
  25. <failure ref="$sys_return"></failure>
  26. </return>
  27. </api>
  28. </controller>