From 2030ec81f18f4ec9ea1800f13046acafff6d50f7 Mon Sep 17 00:00:00 2001
From: yinbentan <yinbentan@live.com>
Date: 星期四, 26 九月 2024 00:48:59 +0800
Subject: [PATCH] 添加grpc方法:客户信息维护

---
 model/response/common.go |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/model/response/common.go b/model/response/common.go
index 7461096..7687174 100644
--- a/model/response/common.go
+++ b/model/response/common.go
@@ -6,3 +6,16 @@
 	Page     int         `json:"page"`
 	PageSize int         `json:"pageSize"`
 }
+
+type ListResponse struct {
+	Code  int         `json:"code"`
+	Msg   string      `json:"msg"`
+	Data  interface{} `json:"data"`
+	Count int64       `json:"count"`
+}
+
+type Response struct {
+	Code int         `json:"code"`
+	Msg  string      `json:"msg"`
+	Data interface{} `json:"data"`
+}

--
Gitblit v1.8.0