!39 Vue3重构:错误码管理

Merge pull request !39 from kinlon92/dev
This commit is contained in:
芋道源码
2023-03-20 00:47:51 +00:00
committed by Gitee
4 changed files with 312 additions and 181 deletions

View File

@ -1,10 +1,10 @@
import request from '@/config/axios'
export interface ErrorCodeVO {
id: number
id: number | undefined
type: number
applicationName: string
code: number
code: number | undefined
message: string
memo: string
createTime: Date