mirror of
https://github.com/PengZhangs2017582/novel.git
synced 2025-06-16 15:31:22 +08:00
17 lines
335 B
Go
17 lines
335 B
Go
// 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
|
|
}
|