优化实体统一首字母大写

This commit is contained in:
不做码农
2022-09-01 21:54:53 +08:00
parent 401338eadb
commit c372c9a9e2
17 changed files with 184 additions and 185 deletions

View File

@@ -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);
}