sendentity.cs
来自「ASP.NET 2.0动态网站设计实例源代码,本书介绍了ASP.NET2.0的基」· CS 代码 · 共 107 行
CS
107 行
///////////////////////////////////////////////////////////
// SendEntity.cs
// Implementation of the Class SendEntity
// Generated by Enterprise Architect
// Created on: 07-五月-2006 14:01:00
///////////////////////////////////////////////////////////
using System;
namespace BookShop.Entity {
/// <summary>
/// 发货信息
/// </summary>
public class SendEntity {
/// <summary>
/// 发货数量
/// </summary>
private int _Count = -1;
private int _ID = -1;
/// <summary>
/// 发货时间
/// </summary>
private DateTime _SentDate;
/// <summary>
/// 发货员ID
/// </summary>
private int _SentUserID = -1;
/// <summary>
/// 库存ID
/// </summary>
private int _StorageID = -1;
public SendEntity(){
}
~SendEntity(){
}
public virtual void Dispose(){
}
/// <summary>
/// 发货数量
/// </summary>
public int Count{
get{
return _Count;
}
set{
_Count = value;
}
}
/// <summary>
/// 发货时间
/// </summary>
public DateTime SentDate{
get{
return _SentDate;
}
set{
_SentDate = value;
}
}
public int SentID{
get{
return _ID;
}
set{
_ID = value;
}
}
/// <summary>
/// 发货员ID
/// </summary>
public int SentUserID{
get{
return _SentUserID;
}
set{
_SentUserID = value;
}
}
/// <summary>
/// 库存ID
/// </summary>
public int StorageID{
get{
return _StorageID;
}
set{
_StorageID = value;
}
}
}//end SendEntity
}//end namespace Entity
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?