do_project_module_files.go
1.7 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
64
65
66
67
68
69
70
71
72
package domain
import "time"
const (
Dir = iota + 1
File
)
// ProjectModuleFiles
type ProjectModuleFiles struct {
// 唯一标识
Id int64 `json:"id"`
// 项目编号
ProjectModuleId int64 `json:"projectModuleId"`
// 项目版本编号
ProjectModuleVersionId int64 `json:"projectModuleVersionId"`
// 文件类型 1:文件夹 2:文件
FileType int `json:"fileType"`
// 文件名称
FileName string `json:"fileName"`
// 文件键值
FileKey string `json:"fileKey"`
// 代码块
CodeBlock string `json:"codeBlock"`
// 父级编号
ParentId int64 `json:"parentId"`
// 排序
Sort int `json:"-"`
// 备注信息
Remark string `json:"remark"`
// 创建时间
CreateTime time.Time `json:"-"`
// 更新时间
UpdateTime time.Time `json:"-"`
// 当前文件相对路径 a/b/c
Path string `json:"path"`
}
type ProjectModuleFilesRepository interface {
Save(dm *ProjectModuleFiles) (*ProjectModuleFiles, error)
Remove(dm *ProjectModuleFiles) (*ProjectModuleFiles, error)
FindOne(queryOptions map[string]interface{}) (*ProjectModuleFiles, error)
Find(queryOptions map[string]interface{}) (int64, []*ProjectModuleFiles, error)
}
func (m *ProjectModuleFiles) Identify() interface{} {
if m.Id == 0 {
return nil
}
return m.Id
}
func (m *ProjectModuleFiles) Update(data map[string]interface{}) error {
if fileName, ok := data["fileName"]; ok {
m.FileName = fileName.(string)
}
if codeBlock, ok := data["codeBlock"]; ok {
m.CodeBlock = codeBlock.(string)
}
//if parentId, ok := data["parentId"]; ok {
// m.ParentId = parentId.(int64)
//}
if remark, ok := data["remark"]; ok {
m.Remark = remark.(string)
}
if path, ok := data["path"]; ok {
m.Path = path.(string)
}
m.UpdateTime = time.Now()
return nil
}