📄 sendentity.cs
字号:
///////////////////////////////////////////////////////////
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -