30 lines
946 B
C#
30 lines
946 B
C#
using CPRNIMS.Infrastructure.Entities.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Items
|
|
{
|
|
[Table("ItemCart")]
|
|
public class ItemCart
|
|
{
|
|
[Key]
|
|
public long ItemCartId { get; set; }
|
|
public long ItemNo { get; set; }
|
|
public string? UserId { get; set; }
|
|
public string? ItemName { get; set; }
|
|
public string? ItemCategoryName { get; set; }
|
|
public string? ItemDescription { get; set; }
|
|
public decimal Qty { get; set; }
|
|
public int CartItemCount { get; set; }
|
|
public int UOMId { get; set; }
|
|
public long ItemAttachId { get; set; }
|
|
public string? CreatedBy { get; set; }
|
|
public DateTime CreatedDate { get; set; }
|
|
}
|
|
}
|