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.

17 lines
297 B
C#

namespace DS.Module.Core;
/// <summary>
///
/// </summary>
public class NumberConst
{
/// <summary>
/// 最大8位
/// </summary>
public static decimal MAX_8 = 99999999.99M;
/// <summary>
/// 最大5位
/// </summary>
public static decimal MAX_5 = 99999.99M;
}