宜昌华友原料库管理软件
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.

132 lines
2.8 KiB

/***************************************************************************
*
* 功能: 实体类
* 作者: Siasun
* 日期: 2013/4/11
*
* 修改日期:
* 修改人:
* 修改内容:
*
* *************************************************************************/
namespace SiaSun.LMS.Model
{
using System;
using System.Runtime.Serialization;
/// <summary>
/// GOODS_PROPERTY
/// </summary>
[Serializable]
[DataContract]
public class GOODS_PROPERTY
{
public GOODS_PROPERTY()
{
}
private int _goods_property_id;
private int _goods_type_id;
private string _goods_property_code;
private string _goods_property_name;
private string _goods_property_datasource;
private string _goods_property_field;
private string _goods_property_fieldtype;
private int _goods_property_order;
private string _goods_property_valid;
private string _goods_property_flag;
///<sumary>
///
///</sumary>
///
[DataMember]
public int GOODS_PROPERTY_ID
{
get{return _goods_property_id;}
set{_goods_property_id = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public int GOODS_TYPE_ID
{
get{return _goods_type_id;}
set{_goods_type_id = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string GOODS_PROPERTY_CODE
{
get{return _goods_property_code;}
set{_goods_property_code = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string GOODS_PROPERTY_NAME
{
get{return _goods_property_name;}
set{_goods_property_name = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string GOODS_PROPERTY_DATASOURCE
{
get{return _goods_property_datasource;}
set{_goods_property_datasource = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string GOODS_PROPERTY_FIELD
{
get{return _goods_property_field;}
set{_goods_property_field = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string GOODS_PROPERTY_FIELDTYPE
{
get{return _goods_property_fieldtype;}
set{_goods_property_fieldtype = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public int GOODS_PROPERTY_ORDER
{
get{return _goods_property_order;}
set{_goods_property_order = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string GOODS_PROPERTY_VALID
{
get{return _goods_property_valid;}
set{_goods_property_valid = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string GOODS_PROPERTY_FLAG
{
get{return _goods_property_flag;}
set{_goods_property_flag = value;}
}
}
}