using System;
namespace Myshipping.Core.Service
{
///
/// 租户航线
///
public class DjyTenantLineOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 航线代码
///
public string LineCode { get; set; }
///
/// 航线名称
///
public string LineName { get; set; }
}
}