21 lines
		
	
	
		
			506 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			506 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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; }
 | 
						|
    }
 | 
						|
}
 |