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_ProductSKU
|
{
|
[Key]
|
public long SKU_Id { get; set; }
|
|
public long WeiMoProduct_Id { get; set; }
|
|
public long? Product_Id { get; set; }
|
|
[StringLength(50)]
|
public string ProductCode { get; set; }
|
|
[StringLength(3500)]
|
public string ProductName { get; set; }
|
|
[StringLength(3500)]
|
public string ProductSpec { get; set; }
|
|
public long? spu_id { get; set; }
|
|
[StringLength(128)]
|
public string spu_name { get; set; }
|
|
[StringLength(128)]
|
public string sku_code { get; set; }
|
|
[StringLength(128)]
|
public string sku_name { get; set; }
|
|
public decimal? sale_price { get; set; }
|
|
public decimal? market_price { get; set; }
|
|
public decimal? weight { get; set; }
|
|
public decimal? volume { 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_Product WeiMeng_Product { get; set; }
|
}
|
}
|