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.
16 lines
956 B
16 lines
956 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
// WishCost is the golang structure for table wish_cost.
|
|
type WishCost struct {
|
|
Id uint `json:"id" orm:"id" description:""` //
|
|
Jwcode int `json:"jwcode" orm:"jwcode" description:""` //
|
|
WishId int `json:"wishId" orm:"wish_id" description:""` //
|
|
Coin float64 `json:"coin" orm:"coin" description:""` //
|
|
Status int `json:"status" orm:"status" description:"1新建2成功3未成功"` // 1新建2成功3未成功
|
|
Msg string `json:"msg" orm:"msg" description:""` //
|
|
CreatedAt int `json:"createdAt" orm:"created_at" description:""` //
|
|
}
|