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