104 lines
2.9 KiB
C#
104 lines
2.9 KiB
C#
|
|
using APT.BaseData.Domain.Entities.FM;
|
|||
|
|
using APT.BaseData.Domain.Enums;
|
|||
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using APT.MS.Domain.Enums;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace APT.MS.Domain.Entities.TL
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 人工观测汇总表
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("人工观测汇总表")]
|
|||
|
|
public class T_TL_WATCH_SUM : MesEntityBase
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 尾矿库名称 冗余
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("尾矿库名称")]
|
|||
|
|
[DataFieldLength(200)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
public string TAILING_NAME { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 尾矿库名称
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("尾矿库名称")]
|
|||
|
|
[DataFieldForeignKey("Nav_Tailing")]
|
|||
|
|
public Guid TAILING_ID { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 尾矿库
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("尾矿库")]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
public T_TL_TAILING Nav_Tailing { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 日期
|
|||
|
|
/// </summary>
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[Description("日期")]
|
|||
|
|
public DateTime DATE { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 日常观测
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("日常观测")]
|
|||
|
|
[DataFieldIngore]
|
|||
|
|
public ICollection<T_TL_WATCH_DAYLY_DETAIL> Nav_ListDetailDayly { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 日常观测
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("日常观测")]
|
|||
|
|
[DataFieldIngore]
|
|||
|
|
public ICollection<T_FM_USER> Nav_ListSignDayly { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 位移观测
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("位移观测")]
|
|||
|
|
[DataFieldIngore]
|
|||
|
|
public ICollection<T_TL_WATCH_MOVE_DETAIL> Nav_ListDetailMovd { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 位移观测
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("位移观测")]
|
|||
|
|
[DataFieldIngore]
|
|||
|
|
public ICollection<T_FM_USER> Nav_ListSignMovd { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 浸润线观测
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("浸润线观测")]
|
|||
|
|
[DataFieldIngore]
|
|||
|
|
public ICollection<T_TL_WATCH_LINE_DETAIL> Nav_ListDetailLine { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 浸润线观测
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("浸润线观测")]
|
|||
|
|
[DataFieldIngore]
|
|||
|
|
public ICollection<T_FM_USER> Nav_ListSignLine { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 坡比观测
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("坡比观测")]
|
|||
|
|
[DataFieldIngore]
|
|||
|
|
public ICollection<T_TL_WATCH_PERCENT_DETAIL> Nav_ListDetailPercent { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 浸润线观测
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("坡比观测")]
|
|||
|
|
[DataFieldIngore]
|
|||
|
|
public ICollection<T_FM_USER> Nav_ListSignPercent { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|