using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Core.Service.CommonDB.Dto
{
///
/// 查询
///
public class RelaPortCarrierLaneQueryDto
{
///
/// 航线代码
///
public string LaneCode { get; set; }
///
/// 船司代码
///
public string CarrierCode { get; set; }
///
/// 港口代码
///
public string PortCode { get; set; }
///
/// 模块(公用时为空字符串)
///
public string Module { get; set; }
}
}