Browse Source

变量集中单个文件

master v0.2.5
guzeng 2 years ago
parent
commit
dfdf026195
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      variable.go

+ 19
- 0
variable.go View File

@ -0,0 +1,19 @@
package supplierrpc
var DES_KEY = "suppli22"
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"`
}
type BoolRet struct {
Value bool `json:"value"`
Msg string `json:"msg"`
}

Loading…
Cancel
Save