/tool/open_api/api/index/code
数据库字典
export interface Response {
code: number;
data: Data;
}
export interface Data {
createdAt: string;
/**
* 二维码图片路径
*/
filePath: null | string;
}
代码示例
{
"code": 0,
"data": {
"file_path": "string",
"created_at": "string"
}
}