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.

34 lines
661 B
C#

using DS.Module.Core.Enums;
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 WebDataReq
{
/// <summary>
/// 提单号
/// </summary>
public string MBLNO { get; set; }
///// <summary>
///// 场站代码
///// </summary>
//public string YardCode { get; set; }
/// <summary>
/// 场站Id
/// </summary>
public long YardId { get; set; }
public WebCodeEnum WebCode { get; set; }
}
}