41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using APT.BaseData.Domain.Entities.FM;
 | 
						|
using APT.Infrastructure.Core;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.ComponentModel;
 | 
						|
using System.Text;
 | 
						|
 | 
						|
namespace APT.MS.Domain.Entities.FO
 | 
						|
{
 | 
						|
    [Description("班组口号配置")]
 | 
						|
    public class T_FO_TEAM_SLOGAN : MesEntityBase
 | 
						|
    {
 | 
						|
        [Description("部门")]
 | 
						|
        [DataFieldForeignKey("Nav_Department")]
 | 
						|
        public Guid? DEPARTMENT_ID { get; set; }
 | 
						|
        [Description("导航:部门")]
 | 
						|
        [FormFieldQuery]
 | 
						|
        public virtual T_FM_DEPARTMENT Nav_Department { get; set; }
 | 
						|
 | 
						|
        [Description("班组ID")]
 | 
						|
        [DataFieldForeignKey("Nav_Team")]
 | 
						|
        public Guid? TEAM_ID { get; set; }
 | 
						|
 | 
						|
        [Description("导航:班组表")]
 | 
						|
        public virtual T_FM_TEAM Nav_Team { get; set; }
 | 
						|
 | 
						|
        [Description("班组口号")]
 | 
						|
        [DataFieldLength(500)]
 | 
						|
 | 
						|
        public string SLOGAN { get; set; }
 | 
						|
 | 
						|
        [Description("安全宣誓")]
 | 
						|
        [DataFieldLength(2000)]
 | 
						|
 | 
						|
        public string SAFETY_OATH { get; set; }
 | 
						|
 | 
						|
        [Description("会议地点")]
 | 
						|
        public string LOCATION { get; set; }
 | 
						|
    }
 | 
						|
}
 |