diff --git a/define.go b/define.go index 680dca3..587917e 100644 --- a/define.go +++ b/define.go @@ -14,6 +14,7 @@ package rpc // Date : 14:08 2022/6/29 type Service struct { Flag string `json:"flag" yaml:"flag"` // 服务标识, 全局唯一 + Description string `json:"description" yaml:"description"` // 服务描述 Domain string `json:"domain" yaml:"domain"` // 域名服务 CodeField string `json:"code_field" yaml:"code_field"` // 状态码字段 MessageField string `json:"message_field" yaml:"message_field"` // 消息字段 @@ -31,6 +32,7 @@ type Service struct { // Date : 14:18 2022/6/29 type Api struct { Flag string `json:"flag" yaml:"flag"` // URI标识 + Description string `json:"description" yaml:"description"` // 接口描述 URI string `json:"uri" yaml:"uri"` // 接口地址 Method string `json:"method" yaml:"method"` // 请求方法 GET / POST / PUT 等 CodeField string `json:"code_field" yaml:"code_field"` // 状态码字段