18 lines
356 B
Go
18 lines
356 B
Go
package entitys
|
|
|
|
type SessionInitRequest struct {
|
|
SysId string `json:"sys_id"`
|
|
UserId string `json:"user_id"`
|
|
}
|
|
|
|
type SessionInitResponse struct {
|
|
Chat []ChatHistory `json:"chat"`
|
|
}
|
|
|
|
type SessionListRequest struct {
|
|
SysId string `json:"sys_id"`
|
|
UserId string `json:"user_id"`
|
|
Page int `json:"page"`
|
|
PageSize int `json:"page_size"`
|
|
}
|