notice_personal.go 606 字节
package models

import "time"

type NoticePersonal struct {
	tableName string `pg:"notice_personals"`
	// 创建时间
	CreatedAt time.Time
	// 删除时间
	DeletedAt time.Time
	// 更新时间
	UpdatedAt time.Time
	// 发送通知时的扩展参数
	Extend string
	// 公司id
	CompanyId int64
	// 内容模板
	Content string
	// 是否已读【1:未读】【2:已读】
	IsRead int
	// 消息对应的业务模块
	Module string
	// 业务环节
	ModuleAction string
	// 编号id
	NoticePersonalId int64 `pg:",pk"`
	// 组织id
	OrgId int64
	// 接收方用户id
	UserId int64

	UserBaseId int64
}