2021-04-05 20:48:33 +08:00
|
|
|
|
package models
|
|
|
|
|
|
|
2022-03-21 21:39:36 +08:00
|
|
|
|
import "github.com/iwind/TeaGo/dbs"
|
|
|
|
|
|
|
2021-08-24 15:46:53 +08:00
|
|
|
|
// MessageMediaInstance 消息媒介接收人
|
2021-04-05 20:48:33 +08:00
|
|
|
|
type MessageMediaInstance struct {
|
2022-03-21 21:39:36 +08:00
|
|
|
|
Id uint32 `field:"id"` // ID
|
|
|
|
|
|
Name string `field:"name"` // 名称
|
|
|
|
|
|
IsOn uint8 `field:"isOn"` // 是否启用
|
|
|
|
|
|
MediaType string `field:"mediaType"` // 媒介类型
|
|
|
|
|
|
Params dbs.JSON `field:"params"` // 媒介参数
|
|
|
|
|
|
Description string `field:"description"` // 备注
|
|
|
|
|
|
Rate dbs.JSON `field:"rate"` // 发送频率
|
|
|
|
|
|
State uint8 `field:"state"` // 状态
|
|
|
|
|
|
HashLife int32 `field:"hashLife"` // HASH有效期(秒)
|
2021-04-05 20:48:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type MessageMediaInstanceOperator struct {
|
|
|
|
|
|
Id interface{} // ID
|
|
|
|
|
|
Name interface{} // 名称
|
|
|
|
|
|
IsOn interface{} // 是否启用
|
|
|
|
|
|
MediaType interface{} // 媒介类型
|
|
|
|
|
|
Params interface{} // 媒介参数
|
|
|
|
|
|
Description interface{} // 备注
|
2021-08-24 15:46:53 +08:00
|
|
|
|
Rate interface{} // 发送频率
|
2021-04-05 20:48:33 +08:00
|
|
|
|
State interface{} // 状态
|
2021-08-24 20:45:12 +08:00
|
|
|
|
HashLife interface{} // HASH有效期(秒)
|
2021-04-05 20:48:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func NewMessageMediaInstanceOperator() *MessageMediaInstanceOperator {
|
|
|
|
|
|
return &MessageMediaInstanceOperator{}
|
|
|
|
|
|
}
|