notice_empty.go
352 字节
package models
type NoticeEmpty struct {
tableName string `pg:"notice_emptys,alias:notice_empty"`
// 消息id
NoticeEmptyId int64
// 内容模板
Content string
// 是否推送 【是:1】【否:2】
IsPush int
// 消息对应的业务模块
Module string
// 业务环节
ModuleAction string
// 消息对应的编码
SysCode string
}