35 lines
857 B
C#
35 lines
857 B
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; }
|
|
}
|
|
}
|