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.
44 lines
941 B
C#
44 lines
941 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.Module.CrawlerData
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class YardDataReq
|
|
{
|
|
///// <summary>
|
|
///// 用户名ID
|
|
///// </summary>
|
|
//public long UserId { get; set; }
|
|
|
|
///// <summary>
|
|
///// 租户ID
|
|
///// </summary>
|
|
//public long TenantId { get; set; }
|
|
|
|
///// <summary>
|
|
///// 租户名称
|
|
///// </summary>
|
|
//public string TenantName { get; set; }
|
|
/// <summary>
|
|
/// 提单号
|
|
/// </summary>
|
|
public string MBLNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 场站ID
|
|
/// </summary>
|
|
public long YardId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否网站
|
|
/// </summary>
|
|
public bool IsWeb { get; set; } = true;
|
|
}
|
|
}
|