添加系统相关&节假日相关&用户相关RPC
This commit is contained in:
@@ -153,3 +153,18 @@ type AutomationTask struct {
|
||||
ConditionList []AutomationCondition `json:"condition_list"` // 条件列表
|
||||
ActionList []AutomationAction `json:"action_list"` // 动作列表
|
||||
}
|
||||
|
||||
// 系统位置
|
||||
type SystemLocation struct {
|
||||
Longitude float64 `json:"longitude,string"` // 经度
|
||||
Latitude float64 `json:"latitude,string"` // 维度
|
||||
}
|
||||
|
||||
// 用户详情
|
||||
type UserDetail struct {
|
||||
Mobile *string `json:"mobile,omitempty"` // 手机号
|
||||
Email *string `json:"email,omitempty"` // 邮箱
|
||||
Nickname *string `json:"nickname,omitempty"` // 昵称
|
||||
QQ *string `json:"qq,omitempty"` // QQ
|
||||
Status uint8 `json:"status"` // 状态
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user