109 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using APT.BaseData.Domain.Entities.FM;
 | 
						|
using APT.BaseData.Domain.Enums;
 | 
						|
using APT.BaseData.Domain.Enums.PF;
 | 
						|
using APT.Infrastructure.Core;
 | 
						|
using APT.MS.Domain.Enums;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.ComponentModel;
 | 
						|
 | 
						|
namespace APT.MS.Domain.Entities.TL
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// 调洪演算报告
 | 
						|
    /// </summary>
 | 
						|
    [Description("调洪演算报告")]
 | 
						|
    [DataRuleField("DEPARTMENT_ID")]
 | 
						|
    public class T_TL_CACULATE : MesEntityBase
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// 项目编号
 | 
						|
        /// </summary>
 | 
						|
        [CUnique]
 | 
						|
        [CodeRule((int)PFCodeRuleType.尾矿库)]
 | 
						|
        [Description("项目编号")]
 | 
						|
        [FormFieldTable]
 | 
						|
        [FormFieldEdit]
 | 
						|
        [FormFieldQuery]
 | 
						|
        [DataFieldLength(50)]
 | 
						|
        public string CODE { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 名称
 | 
						|
        /// </summary>
 | 
						|
        [Description("名称")]
 | 
						|
        [DataFieldLength(200)]
 | 
						|
        public string NAME { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 尾矿库名称 冗余
 | 
						|
        /// </summary>
 | 
						|
        [Description("尾矿库名称")]
 | 
						|
        [DataFieldLength(200)]
 | 
						|
        [FormFieldTable]
 | 
						|
        public string TAILING_NAME { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 尾矿库名称
 | 
						|
        /// </summary>
 | 
						|
        [Description("尾矿库名称")]
 | 
						|
        [DataFieldForeignKey("Nav_Tailing")]
 | 
						|
        public Guid? TAILING_ID { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 尾矿库
 | 
						|
        /// </summary>
 | 
						|
        [Description("尾矿库")]
 | 
						|
        [FormFieldEdit]
 | 
						|
        public T_TL_TAILING Nav_Tailing { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 部门
 | 
						|
        /// </summary>
 | 
						|
        [Description("部门")]
 | 
						|
        [DataFieldForeignKey("Nav_Department")]
 | 
						|
        public Guid? DEPARTMENT_ID { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 部门
 | 
						|
        /// </summary>
 | 
						|
        [Description("部门")]
 | 
						|
        public T_FM_DEPARTMENT Nav_Department { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 提交人
 | 
						|
        /// </summary>
 | 
						|
        [Description("提交人")]
 | 
						|
        [DataFieldForeignKey("Nav_User")]
 | 
						|
        public Guid USER_ID { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 提交人
 | 
						|
        /// </summary>
 | 
						|
        [Description("提交人")]
 | 
						|
        public T_FM_USER Nav_User { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 日期
 | 
						|
        /// </summary>
 | 
						|
        [Description("日期")]
 | 
						|
        [FormFieldTable]
 | 
						|
        [FormFieldEdit]
 | 
						|
        [FormFieldQuery]
 | 
						|
        public DateTime? DATE { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 调洪演算报告
 | 
						|
        /// </summary>
 | 
						|
        [Description("调洪演算报告")]
 | 
						|
        public ICollection<T_TL_CACULATE_FILE> Nav_Files { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 状态
 | 
						|
        /// </summary>
 | 
						|
        [Description("状态")]
 | 
						|
        [FormFieldQuery]
 | 
						|
        [FormFieldTable]
 | 
						|
        public PFStandardStatus STATUS { get; set; }
 | 
						|
    }
 | 
						|
} |