using System; using Lottomat.Application.Code; using Lottomat.Util; using Lottomat.Utils.Date; namespace Lottomat.Application.Entity.LotteryNumberManage { /// /// 版 本 /// Copyright (c) 2016-2017 /// 创 建:超级管理员 /// 日 期:2017-11-22 11:39 /// 描 述:地方彩-广东深圳风采35选7 /// public class DFSZFCGuangDongEntity : BaseEntity { #region 实体成员 /// /// PK /// /// //public int? PK { get; set; } /// /// ID /// /// public string ID { get; set; } /// /// 期数 /// /// public long? Term { get; set; } /// /// 开奖号1 /// /// public int? OpenCode1 { get; set; } /// /// 开奖号2 /// /// public int? OpenCode2 { get; set; } /// /// 开奖号3 /// /// public int? OpenCode3 { get; set; } /// /// 开奖号4 /// /// public int? OpenCode4 { get; set; } /// /// 开奖号5 /// /// public int? OpenCode5 { get; set; } /// /// 开奖号6 /// /// public int? OpenCode6 { get; set; } /// /// 开奖号7 /// /// public int? OpenCode7 { get; set; } /// /// 开奖号8 /// /// public int? OpenCode8 { get; set; } /// /// 开奖时间 /// /// public DateTime? OpenTime { get; set; } /// /// 添加时间 /// /// public DateTime? Addtime { get; set; } /// /// 备用字段 /// /// public string Spare { get; set; } /// /// 是否校验过 /// /// public bool? IsChecked { get; set; } /// /// 校验是否通过 /// /// public bool? IsPassed { get; set; } #endregion #region 扩展操作 /// /// 新增调用 /// public override void Create() { this.ID = CommonHelper.GetGuid().ToString(); this.IsChecked = false; this.IsPassed = false; this.Addtime = DateTimeHelper.Now; } /// /// 编辑调用 /// /// public override void Modify(string keyValue) { this.ID = keyValue; } #endregion } }