Files
qhmes/yy-admin-master/YY.Admin.Core/Entity/MesXslRubberQuickTestStd.cs

36 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
namespace YY.Admin.Core.Entity;
/// <summary>MES 胶料快检实验标准主表(桌面端只读同步)</summary>
public class MesXslRubberQuickTestStd
{
public string? Id { get; set; }
public string? StdName { get; set; }
public string? TestMethodId { get; set; }
public string? TestMethodName { get; set; }
/// <summary>实验类型来自实验方法MES 回填)</summary>
public string? QuickTestTypeId { get; set; }
public string? QuickTestTypeName { get; set; }
public string? MixerType { get; set; }
public string? RubberMaterialId { get; set; }
public string? RubberMaterialName { get; set; }
public string? PsCompileId { get; set; }
public string? IssueNumber { get; set; }
public DateTime? IssueDate { get; set; }
public string? IssueDeptId { get; set; }
public string? IssueDeptName { get; set; }
public string? EnableStatus { get; set; }
public string? AuditStatus { get; set; }
public int? TenantId { get; set; }
public string? SysOrgCode { get; set; }
public string? CreateBy { get; set; }
public DateTime? CreateTime { get; set; }
public string? UpdateBy { get; set; }
public DateTime? UpdateTime { get; set; }
public List<MesXslRubberQuickTestStdLine>? LineList { get; set; }
public string EnableStatusText => EnableStatus == "0" ? "已停用" : EnableStatus == "1" ? "使用中" : EnableStatus ?? string.Empty;
public string AuditStatusText => AuditStatus == "1" ? "已批准" : AuditStatus == "0" ? "草稿" : AuditStatus ?? string.Empty;
}