7 lines
446 B
MySQL
7 lines
446 B
MySQL
|
|
-- 开放API 接口字典数据:学生列表(供应用管理勾选授权)
|
||
|
|
-- 执行前请确认 pg_api_dict 表已存在;若 api_code 已存在会报唯一键冲突,可忽略
|
||
|
|
-- pangu
|
||
|
|
|
||
|
|
INSERT INTO pg_api_dict (api_id, api_code, api_name, api_path, api_method, api_desc, status, order_num)
|
||
|
|
VALUES (1700000000000000001, 'OPEN_STUDENT_LIST', '学生列表', '/open/api/student/list', 'GET', '开放API-学生列表分页查询', '0', 10);
|