|
package bo
|
|
|
|
type QiXingRequestBo struct {
|
|
Content string `json:"content"`
|
|
Timestamp int64 `json:"timestamp"`
|
|
Ciphertext string `json:"ciphertext"`
|
|
}
|
|
|
|
// QiXingResponse 响应结构体 {"msg":"SUCCESS"} / {"msg":"操作成功"}
|
|
type QiXingResponse struct {
|
|
Msg string `json:"msg"`
|
|
}
|