服务与接口配置支持描述属性

This commit is contained in:
白茶清欢 2022-07-02 13:04:22 +08:00
parent 86977c5117
commit 4febd7fa95

View File

@ -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"` // 状态码字段