mic_screen_rules.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace SmartCoalApplication.Core.DbOpreate.DbModel
  9. {
  10. [Table("mic_screen_rules", Schema = "dbo")]
  11. [Serializable]
  12. public class mic_screen_rules
  13. {
  14. public mic_screen_rules()
  15. {
  16. }
  17. ///<summary>
  18. /// 主键ID
  19. ///</summary>
  20. [Key]
  21. public int id { get; set; }
  22. /// <summary>
  23. /// 尺寸
  24. /// </summary>
  25. public string size { get; set; }
  26. /// <summary>
  27. /// 最大分辨率(像素)
  28. /// </summary>
  29. public string max_resolution { get; set; }
  30. /// <summary>
  31. /// 点距(毫米)
  32. /// </summary>
  33. public string point_pitch { get; set; }
  34. /// <summary>
  35. /// 屏幕宽度(毫米)
  36. /// </summary>
  37. public string screen_width { get; set; }
  38. /// <summary>
  39. /// 删除状态 1是 2否
  40. /// </summary>
  41. public int delete_flag { get; set; }
  42. }
  43. }