年度变更建库软件5.0版本
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.

42 lines
995 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kingo.PluginServiceInterface
{
/// <summary>
/// 外业指导草图
/// </summary>
[Serializable]
public class WYSketch
{
/// <summary>
/// ObjectID
/// </summary>
public int ObjectID { get; set; }
/// <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 BID { get; set; }
}
}