From 2071758a2b24cc21521ec1888df7ddf60065e88f Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期六, 28 十月 2023 15:33:09 +0800 Subject: [PATCH] 新增用户信息更新管理器,定时更新活跃用户的详情,当用户访问系统的时候更新活跃时间,定时清理非活跃用户 --- api/v1/code.go | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/api/v1/code.go b/api/v1/code.go index 2514e44..a94cb5a 100644 --- a/api/v1/code.go +++ b/api/v1/code.go @@ -122,6 +122,8 @@ id, err = model.NewServiceOrderSearch().MaxAutoIncr() case constvar.CodeStandardTypeServerFollow: id, err = model.NewServiceFollowupSearch().MaxAutoIncr() + case constvar.CodeStandardTypeSaleInvoice: + id, err = model.NewInvoiceSearch().MaxAutoIncr() default: ctx.FailWithMsg(ecode.UnknownErr, "缂栫爜瑙勫垯涓嶅瓨鍦�") return -- Gitblit v1.8.0