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.

33 lines
753 B
C#

11 months ago
namespace Ds.Modules.DsEntity.Auth
{
/// <summary>
/// 船名船航次
/// </summary>
public class Ds_Sys_Ship_Voyage : BaseEntityTenant
{
/// <summary>
/// 名称
/// </summary>
11 months ago
public string ShipVoyageName { get; set; }
11 months ago
/// <summary>
/// 英文名称
/// </summary>
11 months ago
public string ShipVoyageEName { get; set; }
11 months ago
/// <summary>
/// 船公司
/// </summary>
11 months ago
public long ShipCompany { get; set; }
11 months ago
/// <summary>
/// 船代理
/// </summary>
11 months ago
public long ShipAgent { get; set; }
11 months ago
/// <summary>
/// 船舶呼号
/// </summary>
11 months ago
public string ShipCallSign { get; set; }
11 months ago
}
}