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.
51 lines
1.1 KiB
51 lines
1.1 KiB
4 years ago
|
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>
|
||
|
/// 是否集团过滤
|
||
|
/// </summary>
|
||
|
public Boolean HasFilter { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 所属平台
|
||
|
/// </summary>
|
||
|
public Int32 Platform { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|