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 Webgistix_ShippingTracking
|
{
|
[Key]
|
public int ShippingTracking_Id { get; set; }
|
|
[StringLength(50)]
|
public string WeightInPounds { get; set; }
|
|
[StringLength(50)]
|
public string InvoiceNumber { get; set; }
|
|
[StringLength(50)]
|
public string WebgistixOrderNumber { get; set; }
|
|
[StringLength(50)]
|
public string Method { get; set; }
|
|
[StringLength(50)]
|
public string DateShipped { get; set; }
|
|
[StringLength(50)]
|
public string ShipmentTrackingNumber { get; set; }
|
|
[StringLength(50)]
|
public string ShippingCost { get; set; }
|
|
public int? CreateID { get; set; }
|
|
[StringLength(50)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
public int? ModifyID { get; set; }
|
|
[StringLength(50)]
|
public string Modifier { get; set; }
|
|
public DateTime? ModifyDate { get; set; }
|
|
[StringLength(50)]
|
public string InterfaceStatus { get; set; }
|
|
public DateTime? PushDate { get; set; }
|
|
[StringLength(50)]
|
public string PushUser { get; set; }
|
|
public string Remark { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|