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_WayBillUpload
|
{
|
[StringLength(50)]
|
public string Recoder { get; set; }
|
|
[Key]
|
[StringLength(50)]
|
public string WayBillCode { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
public int? UserProduct_Id { get; set; }
|
}
|
}
|