24 lines
726 B
C#
24 lines
726 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Dto.Inventory.Request
|
|
{
|
|
public class InventoryRequest
|
|
{
|
|
public string? SearchPRNo { get; set; }
|
|
public string? SearchItemName { get; set; }
|
|
public string? SearchDept { get; set; }
|
|
public int PageNumber { get; set; } = 1;
|
|
public int PageSize { get; set; } = 10;
|
|
public byte MessCode { get; set; }
|
|
public string? SearchProjectCode { get; set; }
|
|
public string? SearchItemNo { get; set; }
|
|
public string? UserId { get; set; }
|
|
public int InventoryId { get; set; }
|
|
}
|
|
}
|