using System;
namespace SHJX.Service.Model.CRUDModules
{
[Table("camera2_value")]
public class Camera2Value
{
[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("0.9*")]
//[DisplayName("色调")]
//public int Hue { get; set; }
///
/// 饱和度
///
[ColumnWidth("1*")]
[DisplayName("饱和度0-255")]
public int Saturation { get; set; }
///
/// 白色平衡
///
[ColumnWidth("1.1*")]
[DisplayName("白平衡0-10000")]
public int WhiteBalance { get; set; }
///
/// 锐度
///
[ColumnWidth("0.9*")]
[DisplayName("锐度(0-255)")]
public int Sharpness { get; set; }
///
/// 增益
///
[ColumnWidth("0.9*")]
[DisplayName("增益(0-255)")]
public int Gain { get; set; }
///
/// 曝光
///
[ColumnWidth("0.9*")]
[DisplayName("曝光")]
public int Explosion { get; set; }
}
}