10 lines
318 B
Go
10 lines
318 B
Go
|
package asArtshow
|
||
|
|
||
|
type GetVideoRecordsReq struct {
|
||
|
Page int `json:"page"`
|
||
|
PageSize int `json:"pageSize"`
|
||
|
ArtistName string `json:"artistName"` //模糊查询画家名称
|
||
|
AuditStatus int64 `json:"auditStatus"` //审批状态
|
||
|
History bool `json:"history"` //是否查询历史记录
|
||
|
}
|