|
package entitys
|
|
|
|
type SessionInitRequest struct {
|
|
SysId string `json:"sys_id"`
|
|
UserId string `json:"user_id"`
|
|
}
|
|
|
|
type SessionListRequest struct {
|
|
SysId string `json:"sys_id"`
|
|
UserId string `json:"user_id"`
|
|
Page int `json:"page"`
|
|
PageSize int `json:"page_size"`
|
|
}
|