mh_jy_safe/APT.MS.Domain/Entities/SK/T_SK_HIDDEN_REASON.cs

21 lines
506 B
C#
Raw Permalink Normal View History

2025-10-24 10:30:28 +08:00
using APT.Infrastructure.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace APT.MS.Domain.Entities.SK
{
[Description("导航:隐患原因")]
public class T_SK_HIDDEN_REASON : MesEntityBase
{
[Description("编号")]
[DataFieldLength(50)]
public string CODE { get; set; }
[Description("名称")]
[DataFieldLength(100)]
public string NAME { get; set; }
}
}