discussion.go
2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package models
import (
"fmt"
"gitlab.fjmaimaimai.com/allied-creation/sumifcc-discuss/cmd/discuss/interanl/pkg/domain"
"gorm.io/gorm"
"gorm.io/plugin/soft_delete"
)
// Discussion 圆桌讨论表
type Discussion struct {
Id int64 // 唯一标识
CompanyId int64 `json:"companyId"` // 公司ID
Title string `json:"title"` // 标题(不超过30个字符)
Content string `json:"content"` // 内容(不超过500个字符)
Images []domain.Image `json:"images"` // 图片(不超过5张)
Widget *domain.Widget `json:"widget"` // 小组件
ProviderId int64 `json:"providerId"` // 发起者ID
ParticipantIds []int64 `json:"participantIds"` // 参与者ID
ArticleId int64 `json:"articleId"` // 文章ID
State int `json:"state"` // 状态(1进行中、2搁置、3中止、4结案)
CreatedAt int64 `json:",omitempty"`
UpdatedAt int64 `json:",omitempty"`
DeletedAt int64 `json:",omitempty"`
Version int `json:",omitempty"`
IsDel soft_delete.DeletedAt `gorm:"softDelete:flag,DeletedAtField:DeletedAt"`
}
func (m *Discussion) TableName() string {
return "discussion"
}
func (m *Discussion) BeforeCreate(tx *gorm.DB) (err error) {
// m.CreatedAt = time.Now().Unix()
// m.UpdatedAt = time.Now().Unix()
return
}
func (m *Discussion) BeforeUpdate(tx *gorm.DB) (err error) {
// m.UpdatedAt = time.Now().Unix()
return
}
func (m *Discussion) CacheKeyFunc() string {
if m.Id == 0 {
return ""
}
return fmt.Sprintf("%v:cache:%v:id:%v", domain.ProjectName, m.TableName(), m.Id)
}
func (m *Discussion) CacheKeyFuncByObject(obj interface{}) string {
if v, ok := obj.(*Discussion); ok {
return v.CacheKeyFunc()
}
return ""
}
func (m *Discussion) CachePrimaryKeyFunc() string {
if len("") == 0 {
return ""
}
return fmt.Sprintf("%v:cache:%v:primarykey:%v", domain.ProjectName, m.TableName(), "key")
}