42 lines
1.5 KiB
C#
42 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Items
|
|
{
|
|
public class ItemDtos
|
|
{
|
|
[Key]
|
|
public long ItemNo { get; set; }
|
|
public long ItemCodeId { get; set; }
|
|
public string? Department { get; set; }
|
|
public string? ItemCategoryName { get; set; }
|
|
public string? UserId { get; set; }
|
|
public string? ItemName { get; set; }
|
|
public string? ItemDescription { get; set; }
|
|
public string? StatusName { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public bool IsCommon { get; set; }
|
|
public byte RequestTypeId { get; set; }
|
|
public string? ItemLocalName { get; set; }
|
|
public string? ItemTypeName { get; set; }
|
|
public string? PRTypeName { get; set; }
|
|
public decimal Qty { get; set; }
|
|
public int ItemColorId { get; set; }
|
|
public short ItemLocalId { get; set; }
|
|
public int UOMId { get; set; }
|
|
public short ItemCategoryId { get; set; }
|
|
public string? PackagingTypeName { get; set; }
|
|
public short ItemClassId { get; set; }
|
|
public string? UOMName { get; set; }
|
|
public string? ItemColorName { get; set; }
|
|
public long ItemAttachId { get; set; }
|
|
public string? ItemAttachPath { get; set; }
|
|
public bool IsMDLD { get; set; }
|
|
public bool CheckBox { get; set; }
|
|
}
|
|
}
|