using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YZXYH.Repository.Models { [Serializable] public partial class LotteryRecord { public int Id { get; set; } public int LotteryId { get; set; } public string LotteryName { get; set; } public string LotteryGroup { get; set; } public string Mobile { get; set; } public string LotteryType { get; set; } } }