namespace SHJX.Service.Model.XmlModules
{
public class DropAmount
{
///
/// 名称
///
[ColumnWidth("1*")]
[DisplayName("名称")]
[IgnoreColumn]
public string Name { get; set; }
[ColumnWidth("1*")]
[DisplayName("描述")]
[ReadOnlyColumn]
public string Description { get; set; }
///
/// 低浓度
///
[ColumnWidth("1*")]
[DisplayName("低浓度")]
public double LowValue { get; set; }
///
/// 高浓度
///
[ColumnWidth("1*")]
[DisplayName("高浓度")]
public double HighValue { get; set; }
}
}