184 lines
4.9 KiB
C#
184 lines
4.9 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.TI
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 立项申请/任务书上报
|
||
|
|
/// </summary>
|
||
|
|
[Description("立项申请/任务书上报")]
|
||
|
|
[DataRuleField("DEPARTMENT_ID")]
|
||
|
|
public partial class T_TI_PROJECT : MesEntityBase
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 安全科技计划
|
||
|
|
/// </summary>
|
||
|
|
[DataFieldForeignKey("Nav_Plan", "Nav_ListProject")]
|
||
|
|
public Guid? PLAN_ID { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 安全科技计划
|
||
|
|
/// </summary>
|
||
|
|
public virtual T_TI_PLAN Nav_Plan { get; set; }
|
||
|
|
|
||
|
|
/// </summary>
|
||
|
|
/// 发起时间
|
||
|
|
/// </summary>
|
||
|
|
[Description("发起时间")]
|
||
|
|
[FormFieldTable]
|
||
|
|
[FormFieldEdit]
|
||
|
|
[FormFieldQuery]
|
||
|
|
public DateTime? BEGINTIME { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 发起部门ID
|
||
|
|
/// </summary>
|
||
|
|
[Description("发起部门")]
|
||
|
|
[FormFieldTable]
|
||
|
|
[FormFieldEdit]
|
||
|
|
[DataFieldForeignKey("Nav_Department")]
|
||
|
|
public Guid? DEPARTMENT_ID { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 导航:发起部门
|
||
|
|
/// </summary>
|
||
|
|
[Description("导航:发起部门")]
|
||
|
|
[FormFieldQuery]
|
||
|
|
public virtual T_FM_DEPARTMENT Nav_Department { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 发起人ID
|
||
|
|
/// </summary>
|
||
|
|
[Description("发起人")]
|
||
|
|
[FormFieldTable]
|
||
|
|
[FormFieldEdit]
|
||
|
|
[DataFieldForeignKey("Nav_User")]
|
||
|
|
public Guid? USER_ID { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 导航:发起人
|
||
|
|
/// </summary>
|
||
|
|
[Description("导航:发起人员")]
|
||
|
|
[FormFieldQuery]
|
||
|
|
public virtual T_FM_USER Nav_User { get; set; }
|
||
|
|
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 计划年度
|
||
|
|
/// </summary>
|
||
|
|
[Description("计划年度")]
|
||
|
|
[FormFieldTable]
|
||
|
|
[FormFieldEdit]
|
||
|
|
[FormFieldQuery]
|
||
|
|
public int? YEAR { get; set; }
|
||
|
|
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 导航:项目来源
|
||
|
|
/// </summary>
|
||
|
|
[Description("项目来源")]
|
||
|
|
public virtual ICollection<T_TI_PROJECT_SOURCE> Nav_Sources { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 导航:所属范围
|
||
|
|
/// </summary>
|
||
|
|
[Description("所属范围")]
|
||
|
|
public virtual ICollection<T_TI_PROJECT_RANGE> Nav_Ranges { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 项目编号
|
||
|
|
/// </summary>
|
||
|
|
[Description("项目编号")]
|
||
|
|
[CodeRule((int)PFCodeRuleType.安全投入科技)]
|
||
|
|
[FormFieldTable]
|
||
|
|
[FormFieldEdit]
|
||
|
|
[FormFieldQuery]
|
||
|
|
[DataFieldLength(50)]
|
||
|
|
public string CODE { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 项目名称
|
||
|
|
/// </summary>
|
||
|
|
[Description("项目名称")]
|
||
|
|
[FormFieldTable]
|
||
|
|
[FormFieldEdit]
|
||
|
|
[FormFieldQuery]
|
||
|
|
[DataFieldLength(200)]
|
||
|
|
public string NAME { get; set; }
|
||
|
|
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 申报经费(万元)
|
||
|
|
/// </summary>
|
||
|
|
[Description("申报经费(万元)")]
|
||
|
|
[FormFieldTable]
|
||
|
|
[FormFieldEdit]
|
||
|
|
[FormFieldQuery]
|
||
|
|
public decimal? MONEY { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 是否涉外
|
||
|
|
/// </summary>
|
||
|
|
[Description("是否涉外")]
|
||
|
|
[FormFieldTable]
|
||
|
|
[FormFieldEdit]
|
||
|
|
[FormFieldQuery]
|
||
|
|
public bool? IS_FOREIGN { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 项目负责人ID
|
||
|
|
/// </summary>
|
||
|
|
[Description("项目负责人")]
|
||
|
|
[FormFieldTable]
|
||
|
|
[FormFieldEdit]
|
||
|
|
[FormFieldQuery]
|
||
|
|
[DataFieldForeignKey("Nav_Manger")]
|
||
|
|
public Guid? MANAGER_ID { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 导航:项目负责人
|
||
|
|
/// </summary>
|
||
|
|
[Description("导航:项目负责人")]
|
||
|
|
public virtual T_FM_USER Nav_Manger { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 导航:立项附件
|
||
|
|
/// </summary>
|
||
|
|
[Description("立项附件")]
|
||
|
|
public virtual ICollection<T_TI_PROJECT_FILE> Nav_Files { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 导航:审批附件
|
||
|
|
/// </summary>
|
||
|
|
[Description("审批附件")]
|
||
|
|
public virtual ICollection<T_TI_PROJECT_WFFILE> Nav_WFFiles { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 状态
|
||
|
|
/// </summary>
|
||
|
|
[Description("状态")]
|
||
|
|
[FormFieldTable]
|
||
|
|
[FormFieldQuery]
|
||
|
|
public PFStandardStatus STATUS { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 是否结题验收
|
||
|
|
/// </summary>
|
||
|
|
[Description("是否结题验收")]
|
||
|
|
public bool ISCHECK { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 是否项目经费管理记录
|
||
|
|
/// </summary>
|
||
|
|
[Description("是否项目经费管理记录")]
|
||
|
|
public bool ISMONEY { get; set; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|