📄 commodityinfo.cs
字号:
using System;
namespace CRM.Model
{
/// <summary>
/// 商品信息业务实体
/// </summary>
[Serializable]
public class CommodityInfo
{
private string _commodityId; //编号
private string _name; //名称
private string _price; //价格
private string _discount; //折扣
private string _putOutTime; //提交时间
private string _tel; //联系电话
private string _company; //公司
private string _country; //国家
private string _province; //省
private string _address; //地址
private string _quantity; //数量
private string _bz; //备注
public CommodityInfo()
{
}
public string CommodityId
{
get{return _commodityId;}
set{_commodityId = value;}
}
public string Name
{
get{return _name;}
set{_name = value;}
}
public string Price
{
get{return _price;}
set{_price=value;}
}
public string Discount
{
get{return _discount;}
set{_discount=value;}
}
public string PutOutTime
{
get{return _putOutTime;}
set{_putOutTime=value;}
}
public string Tel
{
get{return _tel;}
set{_tel=value;}
}
public string Company
{
get{return _company;}
set{_company=value;}
}
public string Country
{
get{return _country;}
set{_country=value;}
}
public string Province
{
get{return _province;}
set{_province=value;}
}
public string Address
{
get{return _address;}
set{_address=value;}
}
public string Quantity
{
get{return _quantity;}
set{_quantity=value;}
}
public string BZ
{
get{return _bz;}
set{_bz=value;}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -