桌面端胶料快检实验标准添加

This commit is contained in:
2026-06-17 15:41:06 +08:00
parent e28352f8ea
commit 94b15e5237
43 changed files with 2651 additions and 2 deletions

View File

@@ -0,0 +1,32 @@
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; }
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;
}