56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using APT.BaseData.Domain.Entities.FM;
 | 
						|
using APT.BaseData.Domain.Enums;
 | 
						|
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("尾矿库名称")]
 | 
						|
    public class T_TL_TAILING : MesEntityBase
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// 名称
 | 
						|
        /// </summary>
 | 
						|
        [Description("名称")]
 | 
						|
        [FormFieldTable]
 | 
						|
        [FormFieldEdit]
 | 
						|
        [FormFieldQuery]
 | 
						|
        [DataFieldLength(200)]
 | 
						|
        public string NAME { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 编码
 | 
						|
        /// </summary>
 | 
						|
        [Description("编码")]
 | 
						|
        [FormFieldTable]
 | 
						|
        [FormFieldEdit]
 | 
						|
        [FormFieldQuery]
 | 
						|
        [DataFieldLength(50)]
 | 
						|
        public string CODE { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 位置
 | 
						|
        /// </summary>
 | 
						|
        [Description("位置")]
 | 
						|
        [FormFieldTable]
 | 
						|
        [FormFieldEdit]
 | 
						|
        [FormFieldQuery]
 | 
						|
        [DataFieldLength(100)]
 | 
						|
        public string LOCATION { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 状态
 | 
						|
        /// </summary>
 | 
						|
        [Description("状态")]
 | 
						|
        [FormFieldTable]
 | 
						|
        [FormFieldEdit]
 | 
						|
        [FormFieldQuery]
 | 
						|
        public TailingState STATE { get; set; }
 | 
						|
    }
 | 
						|
} |