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 System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Kingo.PluginServiceInterface
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 审核标注草图
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class SHBZSketch
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标识码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int BSM { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 图斑唯一标识码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TBBSM { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标注类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BZLX { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标注说明
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BZMS { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标注图形
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Geometry { get; set; }
|
|
|
|
|
public string TBZT { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 绘制人
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string UserID { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 绘制角色
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BzRole { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|