大连融科 WMS
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.
 
 
 

87 lines
1.8 KiB

/***************************************************************************
*
* 功能: 实体类
* 作者: LaiHaMa
* 日期: 2010-9-7
*
* 修改日期:
* 修改人:
* 修改内容:
*
* *************************************************************************/
namespace SiaSun.LMS.Model
{
using System;
using System.Runtime.Serialization;
/// <summary>
/// T_MES_PART_UPDATE
/// </summary>
[Serializable]
[DataContract]
public class WMS_TO_MES_INTERFACE
{
public WMS_TO_MES_INTERFACE()
{
}
private int _mes_id;
private string _type;
private string _mes_info;
private string _update_time;
private string _stock_barcode;
///<sumary>
/// 日志ID
///</sumary>
[DataMember]
public int MES_ID
{
get { return _mes_id; }
set { _mes_id = value; }
}
///<sumary>
/// 日志类型
///</sumary>
[DataMember]
public string TYPE
{
get { return _type; }
set { _type = value; }
}
///<sumary>
/// 日志级别
///</sumary>
[DataMember]
public string MES_INFO
{
get { return _mes_info; }
set { _mes_info = value; }
}
///<sumary>
/// 日期
///</sumary>
[DataMember]
public string UPDATE_TIME
{
get { return _update_time; }
set { _update_time = value; }
}
///<sumary>
/// 日志信息
///</sumary>
[DataMember]
public string STOCK_BARCODE
{
get { return _stock_barcode; }
set { _stock_barcode = value; }
}
}
}