34 lines
1.2 KiB
C#
34 lines
1.2 KiB
C#
using CPRNIMS.Infrastructure.Entities.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Dto.Items
|
|
{
|
|
public class ItemCodeDto : CommonProperties
|
|
{
|
|
public long ItemCodeId { get; set; }
|
|
public int DepartmentId { get; set; }
|
|
public string? Department { get; set; }
|
|
public string? ItemCategoryName { get; set; }
|
|
public byte RequestTypeId { get; set; }
|
|
public short ItemCategoryId { get; set; }
|
|
public string? ItemName { get; set; }
|
|
public string? ItemDescription { get; set; }
|
|
public string? UserId { get; set; }
|
|
public string? FileName { get; set; }
|
|
public short Status { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public int PageNumber { get; set; }
|
|
public int PageSize { get; set; }
|
|
public string? SearchTerm { get; set; }
|
|
public string? SearchItemNo { get; set; }
|
|
public string? SearchItemName { get; set; }
|
|
public string? SearchCategory { get; set; }
|
|
}
|
|
}
|