do_operator_log.go
944 字节
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
package domain
import "time"
const (
LogCodeEditModuleFile = "EditModuleFile"
)
// OperatorLog
type OperatorLog struct {
// 唯一标识
Id int64 `json:"id"`
// 用户编号
UserId int64 `json:"userId"`
// 提交人
Operator string `json:"operator"`
// 日志编号码 : EditModuleFile
Code string `json:"code"`
// 关联资源id
ResourceId int64 `json:"resourceId"`
// 变更内容
Content string `json:"content"`
// 创建时间
CreateTime time.Time `json:"createTime"`
}
type OperatorLogRepository interface {
Save(dm *OperatorLog) (*OperatorLog, error)
Remove(dm *OperatorLog) (*OperatorLog, error)
FindOne(queryOptions map[string]interface{}) (*OperatorLog, error)
Find(queryOptions map[string]interface{}) (int64, []*OperatorLog, error)
}
func (m *OperatorLog) Identify() interface{} {
if m.Id == 0 {
return nil
}
return m.Id
}
func (m *OperatorLog) Update(data map[string]interface{}) error {
return nil
}