优化实体统一首字母大写
This commit is contained in:
@@ -27,9 +27,9 @@ namespace ZR.Service.System
|
||||
/// <param name="operLog">日志对象</param>
|
||||
public void InsertOperlog(SysOperLog operLog)
|
||||
{
|
||||
if (operLog.operParam.Length >= 1000)
|
||||
if (operLog.OperParam.Length >= 1000)
|
||||
{
|
||||
operLog.operParam = operLog.operParam.Substring(0, 1000);
|
||||
operLog.OperParam = operLog.OperParam[..1000];
|
||||
}
|
||||
sysOperLogRepository.AddSysOperLog(operLog);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user