📄 memberorderlinessinfo.cs
字号:
namespace PowerEasy.Model.Shop
{
using PowerEasy.Model;
using System;
public class MemberOrderlinessInfo : PowerEasy.Model.Nullable
{
private int m_Amount;
private string m_ProductName;
private decimal m_SubTotal;
public MemberOrderlinessInfo()
{
}
public MemberOrderlinessInfo(bool isNull)
{
base.IsNull = isNull;
}
public int Amount
{
get
{
return this.m_Amount;
}
set
{
this.m_Amount = value;
}
}
public string ProductName
{
get
{
return this.m_ProductName;
}
set
{
this.m_ProductName = value;
}
}
public decimal SubTotal
{
get
{
return this.m_SubTotal;
}
set
{
this.m_SubTotal = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -