📄 orderdetailsentity.cs
字号:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace VinciDataAccess.Entity
{
/// <summary>
/// Name:Wicresoft's Vinci Item
/// Author:Owen Liu
/// Time:2008.2.20
public class OrderDetailsEntity
{
private int _orderID;
private int _productID;
private Nullable<decimal> _unitPrice;
private Nullable<int> _quantity;
private Nullable<double> _discount;
/// <summary>
/// propertiy of _orderID
/// </summary>
public int OrderID
{
get { return _orderID; }
set { _orderID = value; }
}
/// <summary>
/// propertiy of _productID
/// </summary>
public int ProductID
{
get { return _productID; }
set { _productID = value; }
}
/// <summary>
/// propertiy of _unitPrice
/// </summary>
public Nullable<decimal> UnitPrice
{
get { return _unitPrice; }
set { _unitPrice = value; }
}
/// <summary>
/// propertiy of _quantity
/// </summary>
public Nullable<int> Quantity
{
get { return _quantity; }
set { _quantity = value; }
}
/// <summary>
/// propertiy of _discount
/// </summary>
public Nullable<double> Discount
{
get { return _discount; }
set { _discount = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -