namespace SHJX.Service.Model.CRUDModules { [Table("camera_value")] public class CameraValue { [Key] [IgnoreColumn] public int SerialKey { get; set; } /// /// 亮度: /// [ColumnWidth("0.9*")] [DisplayName("亮度(50-200)")] public int Brightness { get; set; } /// /// 对比度 /// [ColumnWidth("1*")] [DisplayName("对比度(0-255)")] public int Contrast { get; set; } /// /// 饱和度 /// [ColumnWidth("1*")] [DisplayName("饱和度(0-255)")] public int Saturation { get; set; } /// /// 白平衡 /// [ColumnWidth("1*")] [DisplayName("白平衡(0-9990)")] public int WhiteBalance { get; set; } ///// ///// 色调 ///// //[ColumnWidth("0.9*")] //[DisplayName("色调")] //public int Hue { get; set; } ///// ///// 饱和度 ///// //[ColumnWidth("1*")] //[DisplayName("饱和度0-255")] //public int Saturation { get; set; } /// /// 锐度 /// [ColumnWidth("0.9*")] [DisplayName("锐度(0-255)")] public int Sharpness { get; set; } ///// ///// 白色平衡 ///// //[ColumnWidth("1.1*")] //[DisplayName("白平衡0-10000")] //public int WhiteBalance { get; set; } /// /// 增益 /// [ColumnWidth("0.9*")] [DisplayName("增益(0-255)")] public int Gain { get; set; } /// /// 曝光 /// [ColumnWidth("0.9*")] [DisplayName("曝光(-9-0)")] public int Explosion { get; set; } } }