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.
46 lines
969 B
46 lines
969 B
4 years ago
|
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 CK.SCP.Models.ScpEntity
|
||
|
{
|
||
|
public class QadOrder
|
||
|
{
|
||
|
[Key]
|
||
|
public decimal ID { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string BillNo { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string SupplierCode { get; set; }
|
||
|
|
||
|
public DateTime StartDate { get; set; }
|
||
|
|
||
|
public DateTime EndDate { get; set; }
|
||
|
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string Address { get; set; }
|
||
|
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string ProductCode { get; set; }
|
||
|
|
||
|
|
||
|
public decimal Qty { get; set; }
|
||
|
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string PartName { get; set; }
|
||
|
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string VendName { get; set; }
|
||
|
}
|
||
|
}
|