using Myshipping.Core; using System; using System.ComponentModel.DataAnnotations; namespace Myshipping.Core.Service { /// /// 租户航线 /// public class DjyTenantLineInput { /// /// 航线代码 /// public string LineCode { get; set; } /// /// 航线名称 /// public string LineName { get; set; } } /// /// 租户航线保存 /// public class SaveDjyTenantLineInput : DjyTenantLineInput { /// /// 主键Id /// [Required(ErrorMessage = "主键Id不能为空")] public long Id { get; set; } } /// /// 租户航线查询输入参数 /// public class QueryDjyTenantLineInput : PageInputBase { /// /// 主键Id /// public virtual long Id { get; set; } /// /// 航线代码 /// public string LineCode { get; set; } /// /// 航线名称 /// public string LineName { get; set; } } /// /// 租户航线查询输入参数 /// public class ListDjyTenantLineInput { /// /// 航线名称 /// public string LineName { get; set; } } }