From 588587762e4a0d14ddd2892b940696d54147cd45 Mon Sep 17 00:00:00 2001 From: zhangxin Date: Mon, 23 Aug 2021 17:33:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9F=A5=E6=89=BE=E5=B7=A5=E8=89=BA=E7=9A=84?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=A2=9E=E9=A1=B9=E7=9B=AEID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dao/base/Operation.dao.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dao/base/Operation.dao.go b/dao/base/Operation.dao.go index 72a4976..ab72f29 100644 --- a/dao/base/Operation.dao.go +++ b/dao/base/Operation.dao.go @@ -228,6 +228,8 @@ type OperationDAO interface { * * @Function Parameters : workLineId * + * @Function Parameters : project id + * * @Return Value : model.OperationRelData * * @Return Value : 执行时发生的错误 @@ -237,7 +239,7 @@ type OperationDAO interface { * @Date : 2021-07-13 * ******************************************************************************/ - GetOperationRelData([]string, string) ([]model.OperationRelData, error) + GetOperationRelData([]string, string, string) ([]model.OperationRelData, error) } /******************************************************************************