// ================================================================================= // 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:"时间"` // 时间 }