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 SYSTEM_TIME = "HH:mm:ss"; } }