21 lines
517 B
C#
21 lines
517 B
C#
namespace YLErp.BLL.MarginCalculation
|
|
{
|
|
/// <summary>
|
|
/// 中财预付金计算
|
|
/// </summary>
|
|
public class ZhongCaiMarginCalculation : MarginCalculationBase
|
|
{
|
|
public static readonly ZhongCaiMarginCalculation Instance;
|
|
|
|
static ZhongCaiMarginCalculation()
|
|
{
|
|
Instance = new ZhongCaiMarginCalculation();
|
|
}
|
|
|
|
// 定义私有构造函数,使外界不能创建该类实例
|
|
protected ZhongCaiMarginCalculation()
|
|
{
|
|
}
|
|
}
|
|
}
|