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.
13 lines
663 B
13 lines
663 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
// HotJwcode is the golang structure for table hot_jwcode.
|
|
type HotJwcode struct {
|
|
Id uint `json:"id" orm:"id" description:""` //
|
|
Jwcode int `json:"jwcode" orm:"jwcode" description:"精网号"` // 精网号
|
|
Hot int `json:"hot" orm:"hot" description:"热度值"` // 热度值
|
|
UpdatedAt int `json:"updatedAt" orm:"updated_at" description:""` //
|
|
}
|