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 WeiMeng_OrderList
|
{
|
[Key]
|
public long WeimengorderList_id { get; set; }
|
|
public long Weimengorder_id { get; set; }
|
|
public long? order_detail_id { get; set; }
|
|
[StringLength(64)]
|
public string spu_code { get; set; }
|
|
[StringLength(64)]
|
public string sku_code { get; set; }
|
|
[StringLength(64)]
|
public string sku_name { get; set; }
|
|
public int? qty { get; set; }
|
|
public decimal? sale_price { get; set; }
|
|
public decimal? sale_amount { get; set; }
|
|
public decimal? price { get; set; }
|
|
public decimal? amount { get; set; }
|
|
public bool? is_delete { get; set; }
|
|
public long? Order_Id { get; set; }
|
|
public long? OrderList_Id { 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; }
|
|
public virtual WeiMeng_Order WeiMeng_Order { get; set; }
|
}
|
}
|