You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
602 B
23 lines
602 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.Frame.APP
|
|
{
|
|
public class SearchPart
|
|
{
|
|
/// <summary>
|
|
/// 关键字
|
|
/// </summary>
|
|
public string ItemCode { get; set; }
|
|
public int size { get; set; }
|
|
/// <summary>
|
|
/// 可以通过扩展字段参数,指定需要额外获取的字段清单
|
|
/// </summary>
|
|
public string extra { get; set; }
|
|
public string routecode { get; set; }
|
|
public string opseq { get; set; }
|
|
}
|
|
}
|