BaoKai_202508_WebApi_Jingwa.../DataCommon/ModeWMSSts.cs

27 lines
512 B
C#
Raw Normal View History

2025-08-24 22:23:34 +08:00
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; }
}
}
}