10 lines
208 B
Go
10 lines
208 B
Go
package request
|
|
|
|
import common "sundynix-go/model/commom/request"
|
|
|
|
type GetClientList struct {
|
|
common.PageInfo
|
|
ClientId string `json:"clientId" form:"clientId"`
|
|
Name string `json:"name" form:"name"`
|
|
}
|