orderdetailsentity.cs

来自「简单的cI真的是很简单 你想要就下载吧」· CS 代码 · 共 61 行

CS
61
字号
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 + =
减小字号Ctrl + -
显示快捷键?