first commit

This commit is contained in:
2026-03-24 09:29:05 +08:00
commit b8021c9a31
1430 changed files with 212886 additions and 0 deletions

View File

@ -0,0 +1,18 @@
package com.ktg.common.utils;
/**
* 处理并记录日志文件
*
* @author ruoyi
*/
public class LogUtils
{
public static String getBlock(Object msg)
{
if (msg == null)
{
msg = "";
}
return "[" + msg.toString() + "]";
}
}