You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
889 B
19 lines
889 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
// Collect is the golang structure for table collect.
|
|
type Collect struct {
|
|
Id uint `json:"id" ` //
|
|
Name string `json:"name" ` // 资源名
|
|
Url string `json:"url" ` //
|
|
Param string `json:"param" ` // 参数
|
|
Model uint `json:"model" ` // 类型
|
|
Opt uint `json:"opt" ` // 操作方式
|
|
Filter int `json:"filter" ` // 过滤模式
|
|
FilterForm string `json:"filter_form" ` //
|
|
SyncPic uint `json:"sync_pic" ` // 同步图片 全局 2 开启 1 关闭0
|
|
Class string `json:"class" ` // 扩展分类 逗号,分隔
|
|
}
|