diff --git a/client.info.go b/client.info.go new file mode 100644 index 0000000..d834d93 --- /dev/null +++ b/client.info.go @@ -0,0 +1,13 @@ +package supplierrpc + +type GetParam struct { + SiteId string `json:"site_id"` + Dbname string `json:"database"` + Id string `json:"id"` +} + +type GetUuidParam struct { + SiteId string `json:"site_id"` + Dbname string `json:"database"` + Uuid string `json:"uuid"` +} diff --git a/client.is_open.go b/client.is_open.go new file mode 100644 index 0000000..46e69c8 --- /dev/null +++ b/client.is_open.go @@ -0,0 +1,6 @@ +package supplierrpc + +type BoolRet struct { + Value bool `json:"value"` + Msg string `json:"msg"` +}