You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.3 KiB
60 lines
1.3 KiB
/***************************************************************************
|
|
*
|
|
* 功能: 实体类
|
|
* 作者: Siasun
|
|
* 日期: 2017/6/26
|
|
*
|
|
* 修改日期:
|
|
* 修改人:
|
|
* 修改内容:
|
|
*
|
|
* *************************************************************************/
|
|
namespace SiaSun.LMS.Model
|
|
{
|
|
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
/// <summary>
|
|
/// GOODS
|
|
/// </summary>
|
|
[Serializable]
|
|
[DataContract]
|
|
public class ORDER_LIST
|
|
{
|
|
public ORDER_LIST()
|
|
{
|
|
|
|
}
|
|
|
|
private string order_id;
|
|
private int order_price;
|
|
private string order_time;
|
|
///<sumary>
|
|
/// 订单信息编号
|
|
///</sumary>
|
|
[DataMember]
|
|
public string ORDER_ID
|
|
{
|
|
get { return order_id; }
|
|
set { order_id = value; }
|
|
}
|
|
///<sumary>
|
|
/// 订单价格
|
|
///</sumary>
|
|
[DataMember]
|
|
public int ORDER_PRICE
|
|
{
|
|
get { return order_price; }
|
|
set { order_price = value; }
|
|
}
|
|
///<sumary>
|
|
/// 订单时间
|
|
///</sumary>
|
|
[DataMember]
|
|
public string ORDER_TIME
|
|
{
|
|
get { return order_time; }
|
|
set { order_time = value; }
|
|
}
|
|
}
|
|
}
|