You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
465 B

1 year ago
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.ScpEntity
{
public class TB_QadOrderDetail
{
[Key]
public decimal ID { get; set; }
[StringLength(50)]
public string BillNo { get; set; }
[StringLength(50)]
public string ProductCode { get; set; }
public decimal Price { get; set; }
public decimal Qty { get; set; }
public decimal Qtyed { get; set; }
}
}