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.

23 lines
546 B
C#

using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Core.Entity
{
/// <summary>
/// 租户航线
/// </summary>
[SugarTable("djy_tenant_line")]
[Description("租户航线")]
public class DjyTenantLine : DBEntityTenant
{
/// <summary>
/// 航线代码
/// </summary>
public string LineCode { get; set; }
/// <summary>
/// 航线名称
/// </summary>
public string LineName { get; set; }
}
}