This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
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
/// 是否成功
public bool Success { get; set; }
/// 提示消息
public string Message { get; set; }
/// 结果编码。0:成功
public string Code { get; set; }
/// 返回数据
public string Data { get; set; }
}