using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ERP.Framework.Constants
{
public static class DateTimeConstant
{
///
/// 年/月/日
///
public const string Date = "yyyy/MM/dd";
///
/// 年/月/日 时:分
///
public const string Date_Short = "yyyy/MM/dd HH:mm";
///
/// 年/月/日 时:分:秒
///
public const string Date_Long = "yyyy/MM/dd HH:mm:ss";
///
/// 年-月-日
///
public const string Dete_Time = "yyyy-MM-dd";
///
/// 年-月-日 时:分
///
public const string Dete_Time_Short = "yyyy-MM-dd HH:mm";
///
/// 年-月-日 时:分:秒
///
public const string Dete_Time_Long = "yyyy-MM-dd HH:mm:ss";
///
/// 时:分
///
public const string Time = "HH:mm";
///
/// 时:分:秒
///
public const string SystemTime = "HH:mm:ss";
}
}