/** * EC_OrderBLL.cs * * 功 能: 特价信息业务逻辑 * 类 名: EC_OrderBLL * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2013-4-18 9:34 周刚 初版 * V0.02 2013-4-19 9:53 吴崎均 增加日期与数字格式化字符串 * V0.03 2013-4-28 11:48 吴崎均 增加订单支付条目名称格式化字符串 * * * * * * */ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CY.Infrastructure.Common { /// /// 固定字符串配置工具类 /// public static class UtilConst { /// /// 表示系统超级管理员Id /// public const string AdminFirmId = "11111111-1111-1111-1111-111111111111"; /// /// 时间格式 /// public const string DATETIMEFORMAT = "yyyy-MM-dd HH:mm:ss"; /// /// 日期格式 /// public const string DATEFORMAT = "yyyy-MM-dd"; /// /// 保留两位小数 /// public const string DECIMALTWOFORMAT = "N2"; /// /// 时间格式(用于Eval) /// public const string DATETIMEFORMATFOREVAL = "{0:yyyy-MM-dd HH:mm:ss}"; /// /// 两位小数格式(用于Eval) /// public const string DECIMALTWOFORMATFOREVAL = "{0:N2}"; /// /// 货币格式(用于Eval) /// public const string MONEYFORMATFOREVAL = "{0:c}"; #region OrderAbout /// /// 订单支付条目名称格式化字符串(存储过程中的自动支付例外) /// public static readonly string ORDER_PAY_SUBJECT_FORMT = "订单: {1}一般支付"; /// /// 订单退款条目名称格式化字符串 /// public static readonly string ORDER_REFUND_SUBJECT_FORMT = "订单: {1}退款"; /// /// 订单确认打款条目名称格式化字符串 /// public static readonly string ORDER_CONFIRM_SUBJECT_FORMT = "订单: {1}买家确认打款"; #endregion } }