v1.0.0
This commit is contained in:
Vendored
+31
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user