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 AliExpress_Logistics
|
{
|
[Key]
|
public long Logistics_Id { get; set; }
|
|
[StringLength(50)]
|
public string LogisticsCompany { get; set; }
|
|
[StringLength(50)]
|
public string DisplayName { get; set; }
|
|
[StringLength(50)]
|
public string ServiceName { get; set; }
|
|
public DateTime? MinProcessDay { get; set; }
|
|
public DateTime? MaxProcessDay { get; set; }
|
|
[StringLength(10)]
|
public string TrackingNoRegex { get; set; }
|
|
public long? RecommendOrder { get; set; }
|
|
public string Remark { get; set; }
|
|
public int? Enable { get; set; }
|
|
public int? CreateID { get; set; }
|
|
[MaxLength(50)]
|
public byte[] Creator { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
[StringLength(50)]
|
public string Modifier { get; set; }
|
|
[StringLength(50)]
|
public string ModifyID { get; set; }
|
|
public DateTime? ModifiDate { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|