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