using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models.Entity.LotteryNumDB
{
///
/// LotteryNumDB.B_Awards(玩法规则表)
///
[ZXTableName("KJDataBase.B_Awards")]
public class B_Awards
{
#region 实体成员
///
/// PK
///
///
[IsInsert]
public int? PK { get; set; }
///
/// ID
///
///
[IsInsert]
public string ID { get; set; }
///
/// 奖项ID
///
///
[Key(true)]
[IsInsert(false)]
public string PrizeID { get; set; }
///
/// 奖项名称
///
///
[IsInsert]
public string ItemName { get; set; }
///
/// 玩法介绍
///
///
[IsInsert]
public string Gameplay { get; set; }
///
/// 开奖规则
///
///
public string LotteryRule { get; set; }
///
/// 开奖时间
///
///
[IsInsert]
public string LotteryTime { get; set; }
///
/// 中奖规则
///
///
[IsInsert]
public string Winning { get; set; }
///
/// 添加时间
///
///
[IsInsert]
public string AddTime { get; set; }
///
/// 来自
///
///
[IsInsert]
public string SourceFrom { get; set; }
///
/// 是否删除
///
///
[IsInsert]
public bool? IsDelete { get; set; }
///
/// 备注
///
///
[IsInsert]
public string Remark { get; set; }
///
/// Logo地址
///
///
[IsInsert]
public string Logo { get; set; }
#endregion
}
}