📄 ordervo.cs
字号:
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
/// <summary>
/// OrderVO 的摘要说明
/// </summary>
public class OrderVO
{
private string orderID;
private string userCode;
private string orderDate;
private int bookID;
private string bookName;
private int orderNum;
private string orderState;
private string recName;
private string recAddress;
private string recPostCode;
private string recTel;
private string recEmail;
private string deliverMethod;
private string payMethod;
private float paid;
public OrderVO()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
public string OrderID
{
get { return orderID; }
set { orderID = value; }
}//1
public string UserCode
{
get { return userCode; }
set { userCode = value; }
}//2
public string OrderDate
{
get { return orderDate; }
set { orderDate = value; }
}//3
public int BookID
{
get { return bookID; }
set { bookID = value; }
}//4
public string BookName
{
get { return bookName; }
set { bookName = value; }
}//5
public int OrderNum
{
get { return orderNum; }
set { orderNum = value; }
}//6
public string OrderState
{
get { return orderState; }
set { orderState = value; }
}//7
public string RecName
{
get { return recName; }
set { recName = value; }
}//8
public string RecAddress
{
get { return recAddress; }
set { recAddress = value; }
}//9
public string RecPostCode
{
get { return recPostCode; }
set { recPostCode = value; }
}//10
public string RecTel
{
get { return recTel; }
set { recTel = value; }
}//11
public string RecEmail
{
get { return recEmail; }
set { recEmail = value; }
}//12
public string DeliverMethod
{
get { return deliverMethod; }
set { deliverMethod = value; }
}//13
public string PayMethod
{
get { return payMethod; }
set { payMethod = value; }
}//14
public float Paid
{
get { return paid; }
set { paid = value; }
}//15
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -