返回故障名称

This commit is contained in:
2023-11-13 15:01:49 +08:00
parent 88bc41885f
commit 58c05b301b
2 changed files with 18 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
using SqlSugar;
namespace Tnb.EquipMgr.Entities
{
public partial class EqpRepairApply
{
/// <summary>
/// 故障名称
/// </summary>
[SugarColumn(IsIgnore = true)]
public string? fault_name { get; set; }
}
}