|
|
@@ -98,7 +98,7 @@ func (Enumdicitem) TableName() string {
|
|
|
// Noticemsg 公告消息表
|
|
|
type Noticemsg struct {
|
|
|
Autoid int32 `json:"autoid" xorm:"'AUTOID'" binding:"required"` // 自增ID
|
|
|
- Msgtype int32 `json:"msgtype" xorm:"'MSGTYPE'"` // 消息类型 - 1:公告通知 2:系统消息
|
|
|
+ Msgtype int32 `json:"msgtype" xorm:"'MSGTYPE'"` // 消息类型 - 1:公告通知 2:系统消息 3:商品到期提货通知
|
|
|
Title string `json:"title" xorm:"'TITLE'"` // 标题
|
|
|
Content string `json:"content" xorm:"'CONTENT'"` // 内容
|
|
|
Scheduletime time.Time `json:"scheduletime" xorm:"'SCHEDULETIME'"` // 计划发送时间
|
|
|
@@ -113,6 +113,7 @@ type Noticemsg struct {
|
|
|
Auditoruserid int64 `json:"auditoruserid" xorm:"'AUDITORUSERID'"` // 审核人
|
|
|
Audittime time.Time `json:"audittime" xorm:"'AUDITTIME'"` // 审核日期
|
|
|
Auditremark string `json:"auditremark" xorm:"'AUDITREMARK'"` // 审核备注
|
|
|
+ Msgiconurl string `json:"msgiconurl" xorm:"'MSGICONURL'"` // 消息图标Url
|
|
|
}
|
|
|
|
|
|
// TableName is NOTICEMSG
|