notice_setting_add.go
442 字节
package command
import (
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/domain"
)
type NoticeSettingAddCommand struct {
//操作人
Operator domain.Operator `json:"-"`
// 消息对应的业务模块
Module string `json:"module"`
// 业务环节
ModuleAction string `json:"moduleAction"`
// 是否推送 【是:1】【否:2】
IsPush int `json:"isPush" `
// 内容模板
Content string `json:"content"`
}