You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
728 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos
{
/// <summary>
/// 运踪接口返回结果
/// </summary>
public class BillTraceRes
{
/// <summary>
/// 是否成功
/// </summary>
public bool Success { get; set; }
/// <summary>
/// 提示消息
/// </summary>
public string Message { get; set; }
/// <summary>
/// 结果编码。0成功
/// </summary>
public string Code { get; set; }
/// <summary>
/// 返回数据
/// </summary>
public string Data { get; set; }
}
}