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