You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Kingo.PluginServiceInterface.Enums;
|
|
|
|
|
using Kingo.PluginServiceInterface.Model;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Kingo.PluginServiceInterface
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class NYYSInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///内业预审结果
|
|
|
|
|
/// </summary>
|
|
|
|
|
public NYYSResult NYYSResult { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 外业任务图斑
|
|
|
|
|
/// </summary>
|
|
|
|
|
public WYRWTB WYRWTB { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 外业草图(外业草图标注信息)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<WYSketch> WYSketch { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否只读
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsReadOnly { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 国家反馈意见
|
|
|
|
|
/// </summary>
|
|
|
|
|
public GJFKJG GJReturnComments { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务包
|
|
|
|
|
/// </summary>
|
|
|
|
|
public TaskPackage TaskPackages { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 单图斑变更范围
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DTBDLTBGX DTBDLTBGX { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 对应的监测图层名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string JCTBFeatureClassName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据绑定类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DTBDataTypeEnum BingDataType { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 审核结果
|
|
|
|
|
/// </summary>
|
|
|
|
|
public SHJGInfo SHJG { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 审核标注
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<WYSketch> SHBZ { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 审核标注草图
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<SHBZSketch> SHBZSketch { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|