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

79 lines
1.6 KiB

using System.Collections.Generic;
using System.ComponentModel;
namespace Kingo.Plugin.YJJK.ModelEntity
{
public class EllipsoidAreaTable : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public int FeatureClassID
{
get;
set;
}
public string TableName
{
get;
set;
}
public string TableAliasName
{
get;
set;
}
public string FieldName
{
get;
set;
}
public string FieldAliasName
{
get;
set;
}
/// <summary>
/// 面积字段集合
/// </summary>
public List<AreaField> ListField
{
get;
set;
}
private bool _isChecked = false;
public bool IsChecked
{
set
{
_isChecked = value;
if (PropertyChanged != null)//有改变
{
PropertyChanged(this, new PropertyChangedEventArgs("IsChecked"));//对Name进行监听
}
}
get
{
return _isChecked;
}
}
public string Workspace
{ get; set; }
}
/// <summary>
/// 椭球面积字段
/// </summary>
public class AreaField
{
public string Name
{
get;
set;
}
public string AliasName
{
get;
set;
}
}
}