project.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <controller name="project" desc="项目列表">
  3. <api name="add_project" 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_project" 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_project" 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_project" 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. <api name="submit_project_major" desc="提交项目专业策划" method="post">
  29. <return>
  30. <success ref="$sys_return"></success>
  31. <failure ref="$sys_return"></failure>
  32. </return>
  33. </api>
  34. </controller>