12345678910111213141516171819 |
- import { IApiDocInterface } from "../base/interface";
- const userApiDoc: IApiDocInterface = {
- "/adm/account/verificationCode": {
- funcName: "getCode",
- desc: "获取验证码",
- post: {
-
-
-
- response: {
- imgToken: { type: "String", desc: "图片token", required: true, },
- verification: { type: "String", desc: "验证码", required: true, },
- }
- }
- },
- }
- export default userApiDoc;
|