using DS.Module.Core;
namespace DS.WMS.Core.Code.Dtos;
///
/// 船公司信息返回
///
public class CodeCarrierRes
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 英文简称
///
public string Code { get; set; }
///
/// 中文名称
///
public string CnName { get; set; }
///
/// 中文简称
///
public string CnShortName { get; set; }
///
/// 英文名称
///
public string EnName { get; set; }
///
/// 船公司代码别名
///
public string OtherCode { get; set; }
///
/// 国家Id
///
public long CountryId { get; set; }
///
/// 国家名称
///
public string CountryName { get; set; }
///
/// 助记码
///
public string PinYinCode { get ; set; }
///
/// 船公司Logo
///
public string Logo { get; set; }
///
/// 描述
///
public string Description { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// EDI代码
///
public string EdiCode { get; set; }
///
/// 状态 0 启用 1 禁用
///
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
///
/// 备注
///
public string Note { get; set; } = "";
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
}