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.
15 lines
611 B
15 lines
611 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
// HotClass is the golang structure for table hot_class.
|
|
type HotClass struct {
|
|
Id int `json:"id" ` //
|
|
TypeName string `json:"type_name" ` // 名字
|
|
Code string `json:"code" ` // 代码
|
|
Url string `json:"url" ` // 地址
|
|
Param string `json:"param" ` // 参数
|
|
Status int `json:"status" ` // 状态
|
|
}
|