18 lines
381 B
C#
18 lines
381 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DH.RBAC.Model.DTO.Parms
|
|
{
|
|
public class ItemDetailIndexParms
|
|
{
|
|
public int pageIndex { get; set; }
|
|
public int pageSize { get; set; }
|
|
|
|
public string keyWord { get; set; }
|
|
public string itemId { get; set; }
|
|
}
|
|
}
|