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.
90 lines
2.1 KiB
90 lines
2.1 KiB
/***************************************************************************
|
|
*
|
|
* 功能: 实体类
|
|
* 作者: Siasun
|
|
* 日期: 2017/6/26
|
|
*
|
|
* 修改日期:
|
|
* 修改人:
|
|
* 修改内容:
|
|
*
|
|
* *************************************************************************/
|
|
namespace SiaSun.LMS.Model
|
|
{
|
|
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
/// <summary>
|
|
/// GOOD
|
|
/// </summary>
|
|
[Serializable]
|
|
[DataContract]
|
|
public class GOOD
|
|
{
|
|
public GOOD()
|
|
{
|
|
|
|
}
|
|
|
|
private int good_id;
|
|
private string order_id;
|
|
private int good_quantity;
|
|
private int plan_quantity;
|
|
private string good_name;
|
|
private string good_type;
|
|
///<sumary>
|
|
/// 商品信息编号
|
|
///</sumary>
|
|
[DataMember]
|
|
public int GOOD_ID
|
|
{
|
|
get { return good_id; }
|
|
set { good_id = value; }
|
|
}
|
|
///<sumary>
|
|
/// 订单信息编号
|
|
///</sumary>
|
|
[DataMember]
|
|
public string ORDER_ID
|
|
{
|
|
get { return order_id; }
|
|
set { order_id = value; }
|
|
}
|
|
///<sumary>
|
|
/// 商品数量
|
|
///</sumary>
|
|
[DataMember]
|
|
public int GOOD_QUANTITY
|
|
{
|
|
get { return good_quantity; }
|
|
set { good_quantity = value; }
|
|
}
|
|
///<sumary>
|
|
/// 商品数量
|
|
///</sumary>
|
|
[DataMember]
|
|
public int PLAN_QUANTITY
|
|
{
|
|
get { return plan_quantity; }
|
|
set { plan_quantity = value; }
|
|
}
|
|
///<sumary>
|
|
/// 商品名称
|
|
///</sumary>
|
|
[DataMember]
|
|
public string GOOD_NAME
|
|
{
|
|
get { return good_name; }
|
|
set { good_name = value; }
|
|
}
|
|
///<sumary>
|
|
/// 商品名称
|
|
///</sumary>
|
|
[DataMember]
|
|
public string GOOD_TYPE
|
|
{
|
|
get { return good_type; }
|
|
set { good_type = value; }
|
|
}
|
|
}
|
|
}
|