Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type App ¶
type AppChannel ¶
type AppChannel struct { ID int64 `db:"id,primary"` ChannelName string `db:"channel_name"` ChannelType string `db:"channel_type"` ChannelKey string `db:"channel_key"` ChannelDomain string `db:"channel_domain"` ChannelSecret string `db:"channel_secret"` ExtProperties string `db:"ext_properties"` IsDefault int `db:"is_default"` SendOrder int `db:"send_order"` Quota int `db:"quota"` CreatedAt time.Time `db:"created_at"` UpdatedAt time.Time `db:"updated_at"` }
func (AppChannel) Table ¶
func (t AppChannel) Table() string
type AppSendLog ¶
type AppSendLog struct { ID int `db:"id,primary"` AccountID int `db:"account_id"` AppID int `db:"app_id"` SendStatus int `db:"send_status"` Reason string `db:"reason"` Extra json.RawMessage `db:"extra"` CreatedAt time.Time `db:"created_at"` }
func (AppSendLog) Table ¶
func (t AppSendLog) Table() string
Click to show internal directories.
Click to hide internal directories.