27 lines
512 B
C#
27 lines
512 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
|
|||
|
|
namespace DataCommon
|
|||
|
|
{
|
|||
|
|
public class ModeWMSSts
|
|||
|
|
{
|
|||
|
|
string _errorCode = string.Empty;
|
|||
|
|
string _errorMsg = string.Empty;
|
|||
|
|
|
|||
|
|
public string errorCode
|
|||
|
|
{
|
|||
|
|
get { return _errorCode; }
|
|||
|
|
set { _errorCode = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string errorMsg
|
|||
|
|
{
|
|||
|
|
get { return _errorMsg; }
|
|||
|
|
set { _errorMsg = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|