log_sms.go
442 字节
package models
import "time"
type LogSms struct {
tableName struct{} `comment:"记录短信消息" pg:"log_sms"`
Id int `pg:",pk"`
Phone string `pg:"phone"`
TemplateId int `pg:"template_id"`
Template string `pg:"template"`
Value map[string]string `pg:"value"`
CreatedAt time.Time `pg:"created_at"`
Result string `pg:"result"`
}