using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Text; using System.Text.Json.Serialization; using YiSha.Entity; using YiSha.Util; namespace YiSha.Model.Result.KJH { /// /// 福彩3D列表实体 /// [Table("fcsd")] public class FcsdInfo: BaseEntity { /// /// /// /// [JsonConverter(typeof(DateTimeJsonConverter))] public DateTime? addtime { get; set; } /// /// /// /// public string addtime1 { get; set; } /// /// /// /// [JsonConverter(typeof(DateTimeJsonConverter))] public DateTime? date { get; set; } /// /// /// /// public string date1 { get; set; } /// /// /// /// public int? dym { get; set; } /// /// /// /// public int? gzm { get; set; } /// /// /// /// public int? hw { get; set; } /// /// /// /// public int? hz { get; set; } /// /// /// /// public int? ischeck { get; set; } /// /// /// /// public int? isexception { get; set; } /// /// /// /// public bool? isupdetails { get; set; } /// /// /// /// public int? jm { get; set; } /// /// /// /// public int? kd { get; set; } /// /// /// /// public int? kjih { get; set; } /// /// /// /// public int? n1 { get; set; } /// /// /// /// public int? n2 { get; set; } /// /// /// /// public int? n3 { get; set; } /// /// /// /// public string opencode { get; set; } /// /// /// /// public string ordercode { get; set; } /// /// /// /// public string photo { get; set; } /// /// /// /// [JsonConverter(typeof(StringJsonConverter))] public long? priority { get; set; } /// /// /// /// public int? qi { get; set; } /// /// /// /// public int? sjh { get; set; } /// /// /// /// public string sjx { get; set; } /// /// /// /// public string source { get; set; } /// /// /// /// public int? step { get; set; } /// /// /// /// [JsonConverter(typeof(StringJsonConverter))] public long? task_id { get; set; } /// /// /// /// public string tzmoney { get; set; } /// /// /// /// public int? week { get; set; } /// /// /// /// public string winbonus { get; set; } /// /// /// /// public int? xt { get; set; } /// /// /// /// public string zj1 { get; set; } /// /// /// /// public string zj2 { get; set; } /// /// /// /// public string zj3 { get; set; } public string zjmoney1 { get; set; } public string zjmoney2 { get; set; } public string zjmoney3 { get; set; } } }