京东慧眼
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

60 lines
1.3 KiB

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Coldairarrow.Entity.HuiYan
{
/// <summary>
/// items
/// </summary>
[Table("items")]
public class items
{
/// <summary>
/// 主键
/// </summary>
[Key, Column(Order = 1)]
public String Id { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
/// 创建人Id
/// </summary>
public String CreatorId { get; set; }
/// <summary>
/// 否已删除
/// </summary>
public Boolean Deleted { get; set; }
/// <summary>
/// 宝贝ID
/// </summary>
public String GoodsId { get; set; }
/// <summary>
/// 店铺ID
/// </summary>
public string ShopId { get; set; }
/// <summary>
/// 是否集团过滤
/// </summary>
public Boolean HasFilter { get; set; }
/// <summary>
/// 所属平台
/// </summary>
public Int32 Platform { get; set; }
/// <summary>
/// 商品链接
/// </summary>
public string GoodsUrl { get; set; }
}
}