| 123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class Lottery
- {
- public int Id { get; set; }
- public string LotteryName { get; set; }
- public string LotteryGroup { get; set; }
- public string ExpLotteryType { get; set; }
- public string Mobile { get; set; }
- }
- }
|