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.
58 lines
1.1 KiB
C#
58 lines
1.1 KiB
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 : PageInputBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// 关键字
|
|
/// </summary>
|
|
public string KeyWord { get; set; } = null;
|
|
|
|
/// <summary>
|
|
/// 英文名/中文名
|
|
/// </summary>
|
|
public string Name { get; set; } = null;
|
|
|
|
/// <summary>
|
|
/// 在分页中用不到
|
|
/// </summary>
|
|
public int Limit { get; set; } = 10;
|
|
}
|
|
|
|
public class MappingQueryDto : PageInputBase
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 模块
|
|
/// </summary>
|
|
public string Module { get; set; }
|
|
|
|
/// <summary>
|
|
/// 关键字
|
|
/// </summary>
|
|
public string KeyWord { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船司
|
|
/// </summary>
|
|
public string CarrierCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 在分页中用不到
|
|
/// </summary>
|
|
public int Limit { get; set; } = 10;
|
|
}
|
|
|
|
}
|