initial commit

This commit is contained in:
zp
2024-01-12 18:08:51 +08:00
commit 00122cc66d
74 changed files with 1957 additions and 0 deletions

View File

@ -0,0 +1,16 @@
// Package model -----------------------------
// @file : phone_verify.go
// @author : Allen zhang
// @contact : 364438619@qq.com
// @time : 2024/1/11 15:30
// -------------------------------------------
package model
type GetCodeInput struct {
Phone string
CodeType int
}
type GetCodeOutput struct {
Code int
}