Files
novel/internal/model/phone_verify.go
2024-01-12 18:08:51 +08:00

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
}