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.

38 lines
607 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Core.Service
{
//KeyWord
public class NameQueryDto
{
/// <summary>
/// 关键字
/// </summary>
public string KeyWord { get; set; }
}
public class MappingQueryDto
{
/// <summary>
/// 模块
/// </summary>
public string Module { get; set; }
/// <summary>
/// 关键字
/// </summary>
public string KeyWord { get; set; }
}
}