| 12345678910111213141516171819202122232425262728 |
- <?xml version="1.0" encoding="utf-8" ?>
- <controller name="notice" desc="工作信息通报">
- <api name="add_notice" desc="添加通报" method="post">
- <return>
- <success ref="$sys_return"></success>
- <failure ref="$sys_return"></failure>
- </return>
- </api>
- <api name="delete_notice" desc="删除通报" method="post">
- <return>
- <success ref="$sys_return"></success>
- <failure ref="$sys_return"></failure>
- </return>
- </api>
- <api name="update_notice" desc="修改通报" method="post">
- <return>
- <success ref="$sys_return"></success>
- <failure ref="$sys_return"></failure>
- </return>
- </api>
- <api name="get_notice" desc="获取通报" method="post">
- <param name="" desc="分页参数" ref="$get_page_info"></param>
- <return>
- <success ref="$sys_return"></success>
- <failure ref="$sys_return"></failure>
- </return>
- </api>
- </controller>
|