namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class vTMS_QuotationList
|
{
|
[Key]
|
[Column(Order = 0)]
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public int QuotationList_Id { get; set; }
|
|
[Key]
|
[Column(Order = 1)]
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public int Quotation_Id { get; set; }
|
|
[Key]
|
[Column(Order = 2)]
|
[StringLength(50)]
|
public string QuotationCode { get; set; }
|
|
public int? Consignor_Id { get; set; }
|
|
[StringLength(50)]
|
public string ConsignorCode { get; set; }
|
|
[StringLength(50)]
|
public string ConsignorName { get; set; }
|
|
public DateTime? ArrivedDate { get; set; }
|
|
public decimal? TotalQuantityOrder { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? GrandTotal { get; set; }
|
|
[StringLength(50)]
|
public string QuotationType { get; set; }
|
|
[StringLength(50)]
|
public string QuotationStatus { get; set; }
|
|
public int? UserProduct_Id { get; set; }
|
|
public int? PlatUser_Id { get; set; }
|
|
[StringLength(50)]
|
public string Auditor { get; set; }
|
|
public byte? Auditing { get; set; }
|
|
public DateTime? AuditDate { get; set; }
|
|
public decimal? TotalWeight { get; set; }
|
|
[StringLength(50)]
|
public string ContainerNo { get; set; }
|
|
public int? Product_Id { get; set; }
|
|
[StringLength(50)]
|
public string ProductCode { get; set; }
|
|
[StringLength(500)]
|
public string ProductName { get; set; }
|
|
[StringLength(50)]
|
public string ProductModel { get; set; }
|
|
[StringLength(50)]
|
public string ProductSpec { get; set; }
|
|
[StringLength(50)]
|
public string SmallUnit { get; set; }
|
|
[StringLength(1000)]
|
public string OriginPlace { get; set; }
|
|
public int? Storage_Id { get; set; }
|
|
[StringLength(50)]
|
public string StorageName { get; set; }
|
|
public decimal? Weight { get; set; }
|
|
public DateTime? ProduceDate { get; set; }
|
|
[StringLength(50)]
|
public string BatchNumber { get; set; }
|
|
[StringLength(50)]
|
public string ProductionLineName { get; set; }
|
|
public int? ProductionLine_Id { get; set; }
|
|
public decimal? InQuantity { get; set; }
|
|
[StringLength(50)]
|
public string QuotationListStatus { get; set; }
|
}
|
}
|