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_WeiXin_Consignee
|
{
|
[Key]
|
public int consignee_Id { get; set; }
|
|
[StringLength(50)]
|
public string consigneeName { get; set; }
|
|
[StringLength(300)]
|
public string openid { get; set; }
|
|
[StringLength(300)]
|
public string nickname { get; set; }
|
|
[StringLength(50)]
|
public string consigneeMobile { get; set; }
|
|
public string consigneeAddress { get; set; }
|
|
[StringLength(50)]
|
public string consigneeType { get; set; }
|
|
[StringLength(50)]
|
public string provinceName { get; set; }
|
|
[StringLength(50)]
|
public string cityName { get; set; }
|
|
[StringLength(50)]
|
public string regionName { get; set; }
|
|
[StringLength(50)]
|
public string Remark { 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; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|