This commit is contained in:
Sun
2023-11-08 21:53:07 +08:00
commit 211c3071dc
245 changed files with 39293 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
declare namespace Common {
interface ListResponse<T> {
list:T
count:number
}
interface ListRequest{
limit:number
page:number
keyword?:string
}
interface InfoBase{
createTime?:string
updateTime?:string
id?:number
}
// 请求-带有弹窗验证数据结构
interface VerificationRequest{
codeId?:string
vCode?:string
}
// 响应-带有弹窗验证数据结构
interface VerificationResponse{
codeId?:string
result?:boolean
message?:string
}
}