WinFormTools/WinformGeneralDeveloperFrame/Entity/lotteryInfo.cs

32 lines
854 B
C#
Raw Normal View History

2021-05-25 18:09:07 +08:00
using WinformGeneralDeveloperFrame.Commons;
namespace MES.Entity
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("lottery")]
public partial class lotteryInfo
{
[ModelBindControl("txtid")]
public int id{set;get;}
[ModelBindControl("txtred1")]
public int red1{set;get;}
[ModelBindControl("txtred2")]
public int red2{set;get;}
[ModelBindControl("txtred3")]
public int red3{set;get;}
[ModelBindControl("txtred4")]
public int red4{set;get;}
[ModelBindControl("txtred5")]
public int red5{set;get;}
[ModelBindControl("txtred6")]
public int red6{set;get;}
[ModelBindControl("txtblue")]
public int blue{set;get;}
}
}