mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
18 lines
539 B
Go
18 lines
539 B
Go
package vo
|
|
|
|
import "geekai/core/types"
|
|
|
|
type PowerLog struct {
|
|
Id uint `json:"id"`
|
|
UserId uint `json:"user_id"`
|
|
Username string `json:"username"`
|
|
Type types.PowerType `json:"type"`
|
|
TypeStr string `json:"type_str"`
|
|
Amount int `json:"amount"`
|
|
Mark types.PowerMark `json:"mark"`
|
|
Balance int `json:"balance"`
|
|
Model string `json:"model"`
|
|
Remark string `json:"remark"`
|
|
CreatedAt int64 `json:"created_at"`
|
|
}
|