20 lines
642 B
Go
20 lines
642 B
Go
|
// Package asArtshow -----------------------------
|
||
|
// @file : dto_rulerFloorPrice.go
|
||
|
// @author : JJXu
|
||
|
// @contact : wavingbear@163.com
|
||
|
// @time : 2024/7/2 上午9:10
|
||
|
// -------------------------------------------
|
||
|
package asArtshow
|
||
|
|
||
|
type RulerFloorPrice struct {
|
||
|
ID int64 `json:"ID"`
|
||
|
CreatedAt string `json:"createdAt"`
|
||
|
UpdatedAt string `json:"updatedAt"`
|
||
|
DeletedAt int64 `json:"deletedAt"`
|
||
|
ArtistUid string `json:"artistUid"`
|
||
|
FloorPrice string `json:"floorPrice"`
|
||
|
//OperationName string `json:"operationName"`
|
||
|
//OperationTime string `json:"operationTime"`
|
||
|
//OperationAcc string `json:"operationAcc"`
|
||
|
}
|