namespace MoviconWebApi.API.ClearStaticApi
{
///
/// 清洗统计数据映射工具类
///
public static class Mapper
{
///
/// 格式化小数为两位小数的字符串
///
/// 原始值
/// 格式化后的字符串
public static string FormatDecimal(decimal value)
{
return value.ToString("0.00");
}
///
/// 格式化日期时间为yyyy-MM-dd HH:mm:ss格式
///
/// 日期时间
/// 格式化后的字符串
public static string FormatDateTime(DateTime dateTime)
{
return dateTime.ToString("yyyy-MM-dd HH:mm:ss");
}
}
}