package
Version:
v0.14.0-alpha
Opens a new window with list of versions in this module.
Published: Jun 5, 2023
License: GPL-3.0
Opens a new window with license information.
Imports: 5
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type FormInfo struct {
TangentID string `json:"tangentId"`
ID string `json:"id"`
UserID string `json:"userId"`
Items []ItemInfo `json:"items"`
CreateTime string `json:"createTime"`
}
type GetFormsQuery struct {
TangentID string `form:"tangentId"`
UserIDs string `form:"userIds"`
ID string `form:"id"`
CreateTime string `form:"createTime"`
PageNo int `form:"pageNo"`
PageSize int `form:"pageSize"`
}
type GetFormsResponse struct {
PageNo int `json:"pageNo"`
TotalCount int64 `json:"totalCount"`
Infos []FormInfo `json:"infos"`
}
type Item struct {
K uint8 `json:"k"`
V string `json:"v"`
}
type ItemInfo struct {
K int `json:"k"`
V string `json:"v"`
CreateTime string `json:"createTime"`
}
type UploadFormRequest struct {
TangentID string `json:"tangentId"`
UserID string `json:"userId"`
Items []Item `json:"items"`
FormType uint8 `json:"formType"`
CreateTime string `json:"createTime"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.