fix
wangpengfei
2023-07-21 d7caa411da34db2c2df107ae6bc310e95b1a8a86
pkg/ecode/code.go
@@ -287,10 +287,11 @@
   DepartmentDeleteErr  = 4000006 // 删除部门失败
   DepartmentDeleteErr1 = 4000007 // 该部门下存在用户,无法删除
   VettingExist    = 4100001 // 审批已存在
   VettingNotExist = 4100002 // 审批不存在
   VettingListErr  = 4100003 // 获取审批列表失败
   VettingSetErr   = 4100004 // 设置审批失败
   VettingExist           = 4100001 // 审批已存在
   VettingNotExist        = 4100002 // 审批不存在
   VettingListErr         = 4100003 // 获取审批列表失败
   VettingSetErr          = 4100004 // 设置审批失败
   VettingNotBelongToUser = 4100005 // 审批不属于当前用户
   SatisfactionExist     = 4200001 // 满意度已存在
   SatisfactionNotExist  = 4200002 // 满意度不存在
@@ -376,11 +377,10 @@
   QuotationStatusSetErr    = 5500004 // 设置报价单状态失败
   QuotationStatusUpdateErr = 5500005 // 更新报价单状态失败
   CurrencyExist     = 5600001 // 币种已存在
   CurrencyNotExist  = 5600002 // 币种不存在
   CurrencyListErr   = 5600003 // 获取币种列表失败
   CurrencySetErr    = 5600004 // 设置币种失败
   CurrencyUpdateErr = 5600005 // 更新币种失败
   CurrencyExist     = 5000001 // 币种已存在
   CurrencyNotExist  = 5000002 // 币种不存在
   CurrencyListErr   = 5000003 // 获取币种列表失败
   CurrencySetErr    = 5000004 // 设置币种失败
   CurrencyUpdateErr = 5000005 // 更新币种失败
)
)