15 lines
337 B
Go
15 lines
337 B
Go
|
package asUser
|
||
|
|
||
|
import "github.com/fonchain_enterprise/fonchain-main/api/artistInfoUser"
|
||
|
|
||
|
type GetExportFieldListRequest struct {
|
||
|
Page int64 `json:"page"`
|
||
|
PageSize int64 `json:"pageSize"`
|
||
|
|
||
|
artistInfoUser.ExportFieldData
|
||
|
}
|
||
|
type SimpleExportFieldInfo struct {
|
||
|
ID int64 `json:"id"`
|
||
|
ColumnDesc string `json:"columnDesc"`
|
||
|
}
|