project_module_files.go 585 字节
package models

import "time"

type ProjectModuleFiles struct {
	tableName struct{} `pg:"project_module_files,alias:project_module_files"`
	// 唯一标识
	Id int64 `pg:"pk"`
	// 项目编号
	ProjectModuleId int64
	// 项目版本编号
	ProjectModuleVersion int64
	// 文件类型 1:文件夹 2:文件
	FileType int
	// 代码块
	CodeBlock string
	// 父级Id
	ParentId int64
	// 排序
	Sort int
	// 备注信息
	Remark string
	// 创建时间
	CreateTime time.Time
	// 更新时间
	UpdateTime time.Time
	// 当前文件相对路径  a/b/c
	Path string
	// 标签
	Tag string
}