You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
483 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace POSV.Service
{
public class Constant
{
#region 系统设置
/// <summary>
/// 默认小数点位数
/// </summary>
public static int POINTNUM = 2;
/// <summary>
/// 通用用户
/// </summary>
public static string COMMONUSER = "SERVICEUSER";
#endregion
}
}