namespace SHJX.Service.Model.DiaplayModel
{
public class SampleDetailElementArg : IElementArg
{
///
/// 控件编号
///
public string TagNo { get; set; }
///
/// 详情信息
///
private string _detailInfo;
public string DetailInfo
{
get => _detailInfo;
set => SetProperty(ref _detailInfo, value);
}
///
/// 顶部颜色
///
private string _tagColor;
public string TagColor
{
get => _tagColor;
set => SetProperty(ref _tagColor, value);
}
///
/// 体积
///
private string _volume;
public string Volume
{
get => _volume;
set => SetProperty(ref _volume, value);
}
///
/// 结果
///
private string _result;
public string Result
{
get => _result;
set => SetProperty(ref _result, value);
}
public SampleDetailElementArg()
{
DetailInfo = string.Empty;
Volume = string.Empty;
Result = string.Empty;
}
}
}