mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
26 lines
370 B
Go
26 lines
370 B
Go
package material
|
|
|
|
import "time"
|
|
|
|
// Model 材质模型
|
|
type Model struct {
|
|
// ID
|
|
ID string
|
|
// 名称
|
|
Name string
|
|
// 类别ID
|
|
CategoryID string
|
|
// 类别名称
|
|
CategoryName string
|
|
// 全拼
|
|
TotalPinYin string
|
|
// 首字母拼音
|
|
FirstPinYin string
|
|
// 创建时间
|
|
CreateTime time.Time
|
|
// 更新时间
|
|
UpdateTime time.Time
|
|
// 缩略图
|
|
Thumbnail string
|
|
}
|