using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PaintDotNet.DbOpreate.DbModel { [Table("mic_screen_rules", Schema = "dbo")] [Serializable] public class mic_screen_rules { public mic_screen_rules() { } /// /// 主键ID /// [Key] public int id { get; set; } /// /// 尺寸 /// public string size { get; set; } /// /// 最大分辨率(像素) /// public string max_resolution { get; set; } /// /// 点距(毫米) /// public string point_pitch { get; set; } /// /// 屏幕宽度(毫米) /// public string screen_width { get; set; } /// /// 删除状态 1是 2否 /// public int delete_flag { get; set; } } }