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.
56 lines
1.6 KiB
56 lines
1.6 KiB
using ESRI.ArcGIS.Geometry; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Kingo.Plugin.EngineEditor.Model |
|
{ |
|
public class RepairEntity |
|
{ |
|
///如果WKT 与Geometry 不同,最终反馈图形以WKT为住 |
|
/// <summary> |
|
/// WKT |
|
/// </summary> |
|
public string WKT { get; set; } |
|
/// <summary> |
|
/// 矢量图形 |
|
/// </summary> |
|
public IGeometry Geometry { get; set; } |
|
public string DLBM { get; set; } |
|
public string CZCSXM { get; set; } |
|
public int MJ { get; set; } |
|
public List<ReferenceEntity> ListReference { get; set; } |
|
public int WKID { get; set; } |
|
public string JCBH { get; set; } |
|
/// <summary> |
|
/// 判断点和线距离:默认0.5米 |
|
/// </summary> |
|
public double Distance { get; set; } = 0.5; |
|
/// <summary> |
|
/// 包ID |
|
/// </summary> |
|
public string PackageId { get; set; } |
|
public int OID { get; set; } |
|
} |
|
public class ReferenceEntity |
|
{ |
|
public string BSM { get; set; } |
|
public string RefWKT { get; set; } |
|
public IGeometry RefGeometry { get; set; } |
|
public string DLBM { get; set; } |
|
public string CZCSXM { get; set; } |
|
/// <summary> |
|
/// 是否作为参考图形 |
|
/// </summary> |
|
public bool IsReference { get; set; } |
|
public int oid { get; set; } |
|
/// <summary> |
|
/// 图形是否被修改 |
|
/// </summary> |
|
public bool Modify { get; set; } |
|
|
|
public double EllipseArea { get; set; } |
|
} |
|
}
|
|
|