notice_setting.go 545 字节
package models

import "time"

type NoticeSetting struct {
	tableName string `pg:"notice_settings"`
	// 公司id
	CompanyId int64
	// 内容模板
	Content string
	// 是否推送 【是:1】【否:2】
	IsPush int
	// 消息对应的业务模块
	Module     string
	ModuleName string
	// 业务环节
	ModuleAction     string
	ModuleActionName string
	// 消息id
	NoticeSettingId int64 `pg:",pk"`
	// 组织id
	OrgId int64
	// 创建时间
	CreatedAt time.Time
	// 删除时间
	DeletedAt time.Time
	// 更新时间
	UpdatedAt time.Time
}