⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shoppingcart.cs

📁 手机网店源码
💻 CS
字号:
namespace MobileOnlineShop.Entities
{
	using System;
	using Grove.ORM;
	[DataTable("ShoppingCart")]
	public class ShoppingCart
	{
		Int32 _RecordID;
		String _CartID;
		Int32 _ProductID;
		Int32 _Quantity;
		DateTime _DateCreated;

		[KeyField("RecordID")]
		public Int32 RecordID
		{
			get{return this._RecordID;}
			set{this._RecordID=value;}
		}
		[ForeignKeyField("CartID")]
		public String CartID
		{
			get{return this._CartID;}
			set{this._CartID=value;}
		}
		[ForeignKeyField("ProductID")]
		public Int32 ProductID
		{
			get{return this._ProductID;}
			set{this._ProductID=value;}
		}
		[DataField("Quantity")]
		public Int32 Quantity
		{
			get{return this._Quantity;}
			set{this._Quantity=value;}
		}
		[DataField("DateCreated")]
		public DateTime DateCreated
		{
			get{return this._DateCreated;}
			set{this._DateCreated=value;}
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -