📄 shopcartentity.cs
字号:
///////////////////////////////////////////////////////////
// ShopcartEntity.cs
// Implementation of the Class ShopcartEntity
// Generated by Enterprise Architect
// Created on: 07-五月-2006 14:01:00
///////////////////////////////////////////////////////////
using System;
using System.Collections;
namespace BookShop.Entity {
/// <summary>
/// 购物车实体
/// </summary>
public class ShopcartEntity {
private Hashtable _Goods = null;
/// <summary>
/// 购物车ID
/// </summary>
private int _ID = -1;
/// <summary>
/// 会员ID
/// </summary>
private int _MemberID = -1;
public ShopcartEntity(){
Goods = new Hashtable();
}
~ShopcartEntity(){
}
public virtual void Dispose(){
}
public Hashtable Goods{
get{
return _Goods;
}
set{
_Goods = value;
}
}
/// <summary>
/// 会员ID
/// </summary>
public int MemberID{
get{
return _MemberID;
}
set{
_MemberID = value;
}
}
/// <summary>
/// 购物车ID
/// </summary>
public int ShopCartID{
get{
return _ID;
}
set{
_ID = value;
}
}
}//end ShopcartEntity
}//end namespace Entity
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -