go-common/app/job/main/member/model/notify.go

20 lines
402 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package model
// consts
const (
ActUpdateExp = "updateExp"
ActUpdateLevel = "updateLevel"
ActUpdateFace = "updateFace"
ActUpdateMoral = "updateMoral"
ActUpdateUname = "updateUname"
)
// NotifyInfo notify info.
type NotifyInfo struct {
Uname string `json:"uname"`
Mid int64 `json:"mid"`
Type string `json:"type"`
NewName string `json:"newName"`
Action string `json:"action"`
}