2023-01-25 11:49:21 +08:00
|
|
|
// Package sysin
|
|
|
|
// @Link https://github.com/bufanyun/hotgo
|
2023-02-23 17:53:04 +08:00
|
|
|
// @Copyright Copyright (c) 2023 HotGo CLI
|
2023-01-25 11:49:21 +08:00
|
|
|
// @Author Ms <133814250@qq.com>
|
|
|
|
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
|
|
|
|
//
|
|
|
|
package sysin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"hotgo/internal/model/entity"
|
|
|
|
"hotgo/internal/model/input/form"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SmsLogMaxSortInp 最大排序
|
|
|
|
type SmsLogMaxSortInp struct {
|
|
|
|
Id int64
|
|
|
|
}
|
|
|
|
|
|
|
|
type SmsLogMaxSortModel struct {
|
|
|
|
Sort int
|
|
|
|
}
|
|
|
|
|
|
|
|
// SmsLogEditInp 修改/新增数据
|
|
|
|
type SmsLogEditInp struct {
|
|
|
|
entity.SysSmsLog
|
|
|
|
}
|
|
|
|
type SmsLogEditModel struct{}
|
|
|
|
|
|
|
|
// SmsLogDeleteInp 删除
|
|
|
|
type SmsLogDeleteInp struct {
|
|
|
|
Id interface{}
|
|
|
|
}
|
|
|
|
type SmsLogDeleteModel struct{}
|
|
|
|
|
|
|
|
// SmsLogViewInp 获取信息
|
|
|
|
type SmsLogViewInp struct {
|
|
|
|
Id int64
|
|
|
|
}
|
|
|
|
|
|
|
|
type SmsLogViewModel struct {
|
|
|
|
entity.SysSmsLog
|
|
|
|
}
|
|
|
|
|
|
|
|
// SmsLogListInp 获取列表
|
|
|
|
type SmsLogListInp struct {
|
|
|
|
form.PageReq
|
|
|
|
form.RangeDateReq
|
|
|
|
form.StatusReq
|
|
|
|
Title string
|
|
|
|
Content string
|
|
|
|
}
|
|
|
|
|
|
|
|
type SmsLogListModel struct {
|
|
|
|
entity.SysSmsLog
|
|
|
|
}
|
|
|
|
|
|
|
|
// SmsLogStatusInp 更新状态
|
|
|
|
type SmsLogStatusInp struct {
|
|
|
|
entity.SysSmsLog
|
|
|
|
}
|
|
|
|
type SmsLogStatusModel struct{}
|
|
|
|
|
|
|
|
// SendCodeInp 发送验证码
|
|
|
|
type SendCodeInp struct {
|
|
|
|
Event string `json:"event" description:"事件"` // 必填
|
|
|
|
Mobile string `json:"mobile" description:"手机号"` // 必填
|
|
|
|
Code string `json:"code" description:"验证码或短信内容"`
|
|
|
|
Template string `json:"-" description:"发信模板 "`
|
|
|
|
}
|
|
|
|
|
|
|
|
// VerifyCodeInp 效验验证码
|
|
|
|
type VerifyCodeInp struct {
|
|
|
|
Event string `json:"event" description:"事件"` // 必填
|
|
|
|
Mobile string `json:"mobile" description:"手机号"` // 必填
|
|
|
|
Code string `json:"code" description:"验证码或短信内容"` // 必填
|
|
|
|
}
|