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 JingDong_ProductSKU
|
{
|
[Key]
|
public long ProductSku_Id { get; set; }
|
|
public long JongdongProduct_Id { get; set; }
|
|
[StringLength(50)]
|
public string sku_id { get; set; }
|
|
[StringLength(50)]
|
public string ware_id { get; set; }
|
|
[StringLength(50)]
|
public string shop_id { get; set; }
|
|
[StringLength(50)]
|
public string status { get; set; }
|
|
[StringLength(50)]
|
public string attributes { get; set; }
|
|
[StringLength(50)]
|
public string jd_price { get; set; }
|
|
[StringLength(50)]
|
public string cost_price { get; set; }
|
|
[StringLength(50)]
|
public string market_price { get; set; }
|
|
[StringLength(50)]
|
public string stock_num { get; set; }
|
|
[StringLength(50)]
|
public string outer_id { get; set; }
|
|
[StringLength(50)]
|
public string created { get; set; }
|
|
[StringLength(50)]
|
public string modified { get; set; }
|
|
[StringLength(50)]
|
public string color_value { get; set; }
|
|
[StringLength(50)]
|
public string size_value { get; set; }
|
|
public int? CreateID { get; set; }
|
|
[StringLength(50)]
|
public string Creator1 { 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; }
|
}
|
}
|