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.
26 lines
498 B
C#
26 lines
498 B
C#
using System;
|
|
|
|
namespace Myshipping.Core.Service
|
|
{
|
|
/// <summary>
|
|
/// 租户航线
|
|
/// </summary>
|
|
public class DjyTenantLineOutput
|
|
{
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 航线代码
|
|
/// </summary>
|
|
public string LineCode { get; set; }
|
|
/// <summary>
|
|
/// 航线名称
|
|
/// </summary>
|
|
public string LineName { get; set; }
|
|
|
|
}
|
|
}
|