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 Wish_Product
|
{
|
[Key]
|
public long ProductRelation_Id { get; set; }
|
|
public int StoreInfo_Id { get; set; }
|
|
[Required]
|
[StringLength(500)]
|
public string StoreName { get; set; }
|
|
public long? Product_Id { get; set; }
|
|
[StringLength(128)]
|
public string ProductCode { get; set; }
|
|
[StringLength(500)]
|
public string ProductName { get; set; }
|
|
[StringLength(50)]
|
public string WishProductId { get; set; }
|
|
[StringLength(500)]
|
public string WishProductName { get; set; }
|
|
[StringLength(50)]
|
public string ParentSku { get; set; }
|
|
public int? NumSold { get; set; }
|
|
public int? NumSaves { get; set; }
|
|
[StringLength(500)]
|
public string Tags { get; set; }
|
|
public string Description { get; set; }
|
|
[StringLength(50)]
|
public string Brand { get; set; }
|
|
[StringLength(200)]
|
public string LandingPageUrl { get; set; }
|
|
public int? Upc { get; set; }
|
|
[StringLength(50)]
|
public string VariantId { get; set; }
|
|
[StringLength(50)]
|
public string Sku { get; set; }
|
|
[StringLength(50)]
|
public string Size { get; set; }
|
|
[StringLength(50)]
|
public string Color { get; set; }
|
|
public int? Inventory { get; set; }
|
|
[StringLength(50)]
|
public string ShippingTime { get; set; }
|
|
public decimal? ShippingCost { get; set; }
|
|
public byte? WishEnabled { get; set; }
|
|
public decimal? Msrp { get; set; }
|
|
public decimal? Price { get; set; }
|
|
public string Remark { get; set; }
|
|
public int? Enable { 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; }
|
}
|
}
|