📄 productpriceinfo.cs
字号:
namespace PowerEasy.Model.Shop
{
using PowerEasy.Model;
using System;
[Serializable]
public class ProductPriceInfo : PowerEasy.Model.Nullable
{
private int m_GroupId;
private int m_Id;
private decimal m_Price;
private string m_PropertyValue;
public ProductPriceInfo()
{
}
public ProductPriceInfo(bool value)
{
base.IsNull = value;
}
public int GroupId
{
get
{
return this.m_GroupId;
}
set
{
this.m_GroupId = value;
}
}
public int Id
{
get
{
return this.m_Id;
}
set
{
this.m_Id = value;
}
}
public decimal Price
{
get
{
return this.m_Price;
}
set
{
this.m_Price = value;
}
}
public string PropertyValue
{
get
{
return this.m_PropertyValue;
}
set
{
this.m_PropertyValue = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -