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.

56 lines
1.2 KiB
C#

2 years ago
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; }
/// <summary>
/// 关键字
/// </summary>
public string KeyWord { get; set; }
2 years ago
}
//Name查询
public class NameQueryDto
{
public string Name { get; set; }
/// <summary>
/// 关键字
/// </summary>
public string KeyWord { get; set; }
2 years ago
}
2 years ago
public class MappingQueryDto
{
public string Code { get; set; }
/// <summary>
/// 模块
/// </summary>
public string Module { get; set; }
/// <summary>
/// 映射代码
/// </summary>
public string MapCode { get; set; }
/// <summary>
/// 映射名称
/// </summary>
public string MapName { get; set; }
/// <summary>
/// 关键字
/// </summary>
public string KeyWord { get; set; }
2 years ago
}
2 years ago
}