mirror of
https://github.com/PengZhangs2017582/novel.git
synced 2025-06-16 23:41:21 +08:00
26 lines
471 B
Go
26 lines
471 B
Go
// Package model -----------------------------
|
|
// @file : login.go
|
|
// @author : Allen zhang
|
|
// @contact : 364438619@qq.com
|
|
// @time : 2024/1/10 14:40
|
|
// -------------------------------------------
|
|
package model
|
|
|
|
type WriterCreateOrLoginInput struct {
|
|
Phone string
|
|
Code int
|
|
}
|
|
|
|
type WriterCreateOrLoginOutput struct {
|
|
Id uint
|
|
PenName string
|
|
}
|
|
|
|
// type GetCodeInput struct {
|
|
// Phone string
|
|
// }
|
|
//
|
|
// type GetCodeOutput struct {
|
|
// Code int
|
|
// }
|