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.
14 lines
780 B
14 lines
780 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
// Support is the golang structure for table support.
|
|
type Support struct {
|
|
Id uint `json:"id" orm:"id" description:""` //
|
|
Jwcode int `json:"jwcode" orm:"jwcode" description:"用户标识"` // 用户标识
|
|
WishId int `json:"wishId" orm:"wish_id" description:"心愿ID"` // 心愿ID
|
|
Type int `json:"type" orm:"type" description:"1支持2反对"` // 1支持2反对
|
|
CreatedAt int `json:"createdAt" orm:"created_at" description:"时间"` // 时间
|
|
}
|