苏州瑞玛APS项目web后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
809 B

package request
import _struct "leit.com/LAPP_CHEERSSON_BACKEND/utils/k3cloud/struct"
type SearchRequest struct {
Formid string `json:"formid"`
FieldKeys string `json:"FieldKeys"`
FilterString string `json:"FilterString"`
OrderString string `json:"OrderString"`
TopRowCount int `json:"TopRowCount"`
StartRow int `json:"StartRow"`
Limit int `json:"Limit"`
}
type SearchRequestSave struct {
Formid string `json:"formid"`
FieldKeys string `json:"FieldKeys"`
FilterString []_struct.FUseOrgKey `json:"FilterString"`
OrderString string `json:"OrderString"`
TopRowCount int `json:"TopRowCount"`
StartRow int `json:"StartRow"`
Limit int `json:"Limit"`
}