using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Service { public class ConfigConstant { /// /// 系统参数分组-system /// public const string SYSTEM_GROUP = "system"; /// /// 默认租户 /// public const string SYSTEM_TENANT = "tenant"; /// /// 对外暴露的主端口 /// public const string SYSTEM_DEFAULT_PORT = "default_port"; /// /// 对外暴露的Web端口 /// public const string SYSTEM_WEB_PORT = "web_port"; /// /// 对外暴露的MQTT端口 /// public const string SYSTEM_MQTT_PORT = "mqtt_port"; /// /// 配置分组-business /// public const string GROUP_BUSINESS = "business"; /// /// 凭证号 /// public const string VOUCHER_NO = "voucher_no"; /// /// 结算凭证 /// public const string PAY_NO = "pay_no"; /// /// 当天流水号 /// public const string ORDER_NO = "order_no"; } }