You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
627 B
26 lines
627 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.BigtextResultConclusions
|
|
{
|
|
public class CreateBigtextResultConclusionDto
|
|
{
|
|
/// <summary>
|
|
/// 大文本结果模板Id
|
|
/// </summary>
|
|
public Guid BigtextResultTemplateId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否为异常结论 Y=异常结论 N=正常结论 默认异常结论
|
|
/// </summary>
|
|
public char IsAbnormal { get; set; } = 'Y';
|
|
|
|
/// <summary>
|
|
/// 结论
|
|
/// </summary>
|
|
public string Conclusion { get; set; }
|
|
|
|
|
|
}
|
|
}
|