107 lines
3.0 KiB
C#
107 lines
3.0 KiB
C#
using APT.BaseData.Domain.Entities.FM;
|
|
using APT.Infrastructure.Core;
|
|
using APT.MS.Domain.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace APT.MS.Domain.Entities.OG
|
|
{
|
|
/// <summary>
|
|
/// 工余事件征集
|
|
/// </summary>
|
|
[Description("工余事件征集")]
|
|
public class T_OG_EVENT_GET : MesEntityBase
|
|
{
|
|
/// <summary>
|
|
/// 征集日期
|
|
/// </summary>
|
|
[Description("征集日期")]
|
|
[FormFieldTable]
|
|
[FormFieldQuery]
|
|
[FormFieldEdit]
|
|
public DateTime? START_TIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 征集部门
|
|
/// </summary>
|
|
[Description("征集部门")]
|
|
[FormFieldTable]
|
|
[FormFieldQuery]
|
|
[FormFieldEdit]
|
|
[DataFieldForeignKey("Nav_Department")]
|
|
public Guid? DEPARTMENT_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 导航: 征集部门
|
|
/// </summary>
|
|
[Description("导航: 征集部门")]
|
|
public T_FM_DEPARTMENT Nav_Department { get; set; }
|
|
|
|
/// <summary>
|
|
/// 征集人员ID
|
|
/// </summary>
|
|
[Description("征集人员")]
|
|
[FormFieldTable]
|
|
[FormFieldQuery]
|
|
[FormFieldEdit]
|
|
[DataFieldForeignKey("Nav_User")]
|
|
public Guid? USER_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 导航: 征集人员
|
|
/// </summary>
|
|
[Description("导航: 征集人员")]
|
|
public T_FM_USER Nav_User { get; set; }
|
|
|
|
/// <summary>
|
|
/// 征集截止时间
|
|
/// </summary>
|
|
[Description("征集截止时间")]
|
|
[FormFieldEdit]
|
|
public DateTime? END_TIME { get; set; }
|
|
/// <summary>
|
|
/// 导航: 员工意见数据
|
|
/// </summary>
|
|
[Description("导航: 员工意见数据")]
|
|
[FormFieldEdit]
|
|
public ICollection<T_OG_EVENT_GET_DETAIL> Nav_Details { get; set; }
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[Description("状态")]
|
|
[FormFieldTable]
|
|
[FormFieldQuery]
|
|
[EnumName("OGEventStatus")]
|
|
public OGEventStatus STATUS { get; set; }
|
|
/// <summary>
|
|
/// 工余事件数
|
|
/// </summary>
|
|
[Description("工余事件数")]
|
|
public int EVENT_COUNT { get; set; }
|
|
/// <summary>
|
|
/// 上次工余事件数
|
|
/// </summary>
|
|
[Description("上次工余事件数")]
|
|
public int LAST_EVENT_COUNT { get; set; }
|
|
/// <summary>
|
|
/// 对比数
|
|
/// </summary>
|
|
[Description("对比数")]
|
|
public int EVENT_COMPARE { get; set; }
|
|
/// <summary>
|
|
/// 后台触发
|
|
/// </summary>
|
|
[Description("后台触发")]
|
|
public bool BACK { get; set; }
|
|
[Description("是否发布")]
|
|
[DataFieldIngore]
|
|
public string PUBLISH { get; set; }
|
|
[DataFieldIngore]
|
|
public int IS_OVERTIME { get; set; }
|
|
}
|
|
}
|