-
Notifications
You must be signed in to change notification settings - Fork 62
/
comment_group.gen.go
63 lines (50 loc) · 1.57 KB
/
comment_group.gen.go
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
// Code generated by internal/cmd/gen/dal/comment.go. DO NOT EDIT.
//
// SPDX-License-Identifier: AGPL-3.0-only
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, version 3.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>
package dao
import (
"time"
"github.com/bangumi/server/internal/model"
)
func (c *GroupTopicComment) CreatorID() model.UserID {
return model.UserID(c.UID)
}
func (c *GroupTopicComment) IsSubComment() bool {
return c.Related != 0
}
func (c *GroupTopicComment) CommentID() model.CommentID {
return model.CommentID(c.ID)
}
func (c *GroupTopicComment) CreateAt() time.Time {
return time.Unix(int64(c.CreatedTime), 0)
}
func (c *GroupTopicComment) GetState() uint8 {
return c.statStub()
}
func (c *GroupTopicComment) RelatedTo() model.CommentID {
return model.CommentID(c.Related)
}
func (c *GroupTopicComment) GetID() model.CommentID {
return model.CommentID(c.ID)
}
func (c *GroupTopicComment) GetContent() string {
return c.Content
}
func (c *GroupTopicComment) GetTopicID() uint32 {
return c.TopicID
}
func (c *GroupTopicComment) statStub() uint8 {
return c.State
}