27 lines
		
	
	
		
			607 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			607 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using APT.Infrastructure.Core;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.ComponentModel;
 | 
						|
using System.Text;
 | 
						|
 | 
						|
namespace APT.MS.Domain.Entities.SK
 | 
						|
{ 
 | 
						|
    /// <summary>
 | 
						|
    /// 辨识要求
 | 
						|
    /// </summary>
 | 
						|
    [Description("辨识要求")]
 | 
						|
    public class T_SK_REQUEST : MesEntityBase
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// 辨识要求
 | 
						|
        /// </summary>
 | 
						|
        [Description("辨识要求")]
 | 
						|
        [DataFieldLength(500)]
 | 
						|
        [FormFieldTable]
 | 
						|
        [FormFieldQuery]
 | 
						|
        [FormFieldEdit]
 | 
						|
        [DataFieldIndex(true)]
 | 
						|
        public string NAME { get; set; }
 | 
						|
    }
 | 
						|
}
 |