20 lines
463 B
C#
20 lines
463 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Domain.Message.Response.WMS
|
|
{
|
|
/// <summary>
|
|
/// WMS响应对象
|
|
/// </summary>
|
|
public class WMSResponse
|
|
{
|
|
public int? Code { get; set; }
|
|
public string Message { get; set; }
|
|
public Dictionary<string, string> Value { get; set; }
|
|
public int? View { get; set; }
|
|
}
|
|
}
|