42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
|
|
using APT.BaseData.Domain.Entities.FM;
|
|||
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace APT.MS.Domain.Entities.FO
|
|||
|
|
{
|
|||
|
|
[Description("作业后处理措施确认")]
|
|||
|
|
public class T_FO_JOB_EVENT_MEASURE : MesEntityBase
|
|||
|
|
{
|
|||
|
|
[Description("作业活动记录(一般)表ID")]
|
|||
|
|
[DataFieldForeignKey("Nav_JobEventRecord", "Nav_Measure")]
|
|||
|
|
public Guid JOB_EVENT_RECORD_ID { get; set; }
|
|||
|
|
|
|||
|
|
[Description("导航属性:作业活动记录(一般)表")]
|
|||
|
|
public virtual T_FO_JOB_EVENT_RECORD Nav_JobEventRecord { get; set; }
|
|||
|
|
|
|||
|
|
[Description("序号")]
|
|||
|
|
public int? NUM { get; set; }
|
|||
|
|
[Description("作业后处理措施")]
|
|||
|
|
[DataFieldLength(500)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
public string DealMeasuresStr { get; set; }
|
|||
|
|
|
|||
|
|
[Description("是否确认")]
|
|||
|
|
public bool IS_CONFIRM { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
[Description("导航属性:作业活动记录(一般)附件表")]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
public ICollection<T_FO_JOB_EVENT_MEASURE_FILE> Nav_Files { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|