using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Core.Service { //KeyWord public class NameQueryDto : PageInputBase { /// /// 关键字 /// public string KeyWord { get; set; } = null; /// /// 英文名/中文名 /// public string Name { get; set; } = null; /// /// 在分页中用不到 /// public int Limit { get; set; } = 10; } public class MappingQueryDto : PageInputBase { /// /// 模块 /// public string Module { get; set; } /// /// 关键字 /// public string KeyWord { get; set; } /// /// 船司 /// public string CarrierCode { get; set; } /// /// 在分页中用不到 /// public int Limit { get; set; } = 10; } }