fix(log): remove unused Id field from SystemLog during login log insertion

This commit is contained in:
Chang lue Tsen 2025-08-21 09:15:37 -04:00
parent 38706c0b29
commit 70815c0d50

View File

@ -49,7 +49,6 @@ func (l *UserLoginLogic) UserLogin(req *types.UserLoginRequest) (resp *types.Log
}
content, _ := loginLog.Marshal()
if err := l.svcCtx.LogModel.Insert(l.ctx, &log.SystemLog{
Id: 0,
Type: log.TypeLogin.Uint8(),
Date: time.Now().Format("2006-01-02"),
ObjectID: userInfo.Id,