using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Core.Service { //代码、中文、英文名查询 public class CodeCnEnQueryDto { public string Code { get; set; } public string CnName { get; set; } public string EnName { get; set; } } //Name查询 public class NameQueryDto { public string Name { get; set; } } public class MappingQueryDto { public string Code { get; set; } /// /// 模块 /// public string Module { get; set; } /// /// 映射代码 /// public string MapCode { get; set; } /// /// 映射名称 /// public string MapName { get; set; } } }