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