namespace Admin.NET.Core;
///
/// 通用工具类
///
public static class CommonUtil
{
///
/// 获取今天日期范围00:00:00 - 23:59:59
///
///
public static List GetTodayTimeList(DateTime time)
{
return new List
{
Convert.ToDateTime(time.ToString("D").ToString()),
Convert.ToDateTime(time.AddDays(1).ToString("D").ToString()).AddSeconds(-1)
};
}
///
/// 获取项目根目录文件内容
///
///
///
public static string GetRootPathFileText(string path)
{
return File.ReadAllText(App.WebHostEnvironment.ContentRootPath + path);
}
}