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 TMS_WayBill_UpdateMobile
|
{
|
[Key]
|
public int Update_Id { get; set; }
|
|
[StringLength(50)]
|
public string WayBillCode { get; set; }
|
|
[StringLength(50)]
|
public string ConsigneeMobile { get; set; }
|
|
[StringLength(50)]
|
public string ConsigneeIdcard { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
public byte? IsFinished { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|