github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_entity/sys_sms_logs.go (about)

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_entity
     6  
     7  import (
     8  	"github.com/gogf/gf/v2/os/gtime"
     9  )
    10  
    11  // SysSmsLogs is the golang structure for table sys_sms_logs.
    12  type SysSmsLogs struct {
    13  	Id        float64     `json:"id"        description:""`
    14  	Type      string      `json:"type"      description:"短信平台:qyxs:企业信使"`
    15  	Context   string      `json:"context"   description:"短信内容"`
    16  	Mobile    string      `json:"mobile"    description:"手机号"`
    17  	State     string      `json:"state"     description:"发送状态"`
    18  	Result    string      `json:"result"    description:"短信接口返回内容"`
    19  	UserId    int64       `json:"userId"    description:"用户ID"`
    20  	LicenseId int64       `json:"licenseId" description:"主体ID"`
    21  	CreatedAt *gtime.Time `json:"createdAt" description:""`
    22  	UpdatedAt *gtime.Time `json:"updatedAt" description:""`
    23  	DeletedAt *gtime.Time `json:"deletedAt" description:""`
    24  }