From 4febd7fa955538ddee04bbe8ec6d9d0853ee8c4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Sat, 2 Jul 2022 13:04:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E4=B8=8E=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=94=AF=E6=8C=81=E6=8F=8F=E8=BF=B0=E5=B1=9E?= =?UTF-8?q?=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- define.go | 2 ++ 1 file changed, 2 insertions(+) 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"` // 状态码字段