Files
novel/internal/model/writer.go
2024-01-15 17:30:07 +08:00

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
// }