using System;
using System.Collections.Generic;
using System.Text;
namespace Shentun.Peis.BigtextResultConclusions
{
public class CreateBigtextResultConclusionDto
{
///
/// 大文本结果模板Id
///
public Guid BigtextResultTemplateId { get; set; }
///
/// 是否为异常结论 Y=异常结论 N=正常结论 默认异常结论
///
public char IsAbnormal { get; set; } = 'Y';
///
/// 结论
///
public string Conclusion { get; set; }
}
}