41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
using APT.Infrastructure.Core;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.ComponentModel;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace APT.MS.Domain.Entities.LR
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// 法律法规配置
 | 
						|
    /// </summary>
 | 
						|
    [Description("法律法规配置")]
 | 
						|
    public class T_LR_LRCONFIG : MesEntityBase
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// 需求识别开始时间
 | 
						|
        /// </summary>
 | 
						|
        [Description("需求识别开始时间")]
 | 
						|
        [FormFieldTable]
 | 
						|
        [FormFieldEdit]
 | 
						|
        public DateTime DEMAND_START_TIME { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 需求识别结束时间
 | 
						|
        /// </summary>
 | 
						|
        [Description("需求识别结束时间")]
 | 
						|
        [FormFieldTable]
 | 
						|
        [FormFieldEdit]
 | 
						|
        public DateTime DEMAND_END_TIME { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 启用标志(0启用1停用)
 | 
						|
        /// </summary>
 | 
						|
        [Description("启用标志")]
 | 
						|
        public BaseData.Domain.Enums.FMEnableStatusEnum ENABLE_STATUS { get; set; }
 | 
						|
    }
 | 
						|
}
 |