32 lines
854 B
C#
32 lines
854 B
C#
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;}
|
|
|
|
}
|
|
} |