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.
398 lines
11 KiB
398 lines
11 KiB
using System; |
|
using System.ComponentModel; |
|
|
|
namespace Kingo.PluginServiceInterface.Model |
|
{ |
|
[Serializable] |
|
public class DTBDLTBGX : INotifyPropertyChanged |
|
{ |
|
public event PropertyChangedEventHandler PropertyChanged; |
|
private string _bsm; |
|
/// <summary> |
|
/// 标识码 |
|
/// </summary> |
|
public string BSM |
|
{ |
|
get { return _bsm; } |
|
set |
|
{ |
|
_bsm = value; |
|
if (this.PropertyChanged != null) |
|
{ |
|
this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("BSM")); |
|
} |
|
} |
|
} |
|
|
|
private string _TBBSM; |
|
/// <summary> |
|
/// 外业图斑标识码 |
|
/// </summary> |
|
public string TBBSM |
|
{ |
|
get { return _TBBSM; } |
|
set |
|
{ |
|
_TBBSM = value; |
|
if (this.PropertyChanged != null) |
|
{ |
|
this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("TBBSM")); |
|
} |
|
} |
|
} |
|
private int _OID; |
|
/// <summary> |
|
/// OID |
|
/// </summary> |
|
public int ObjectID |
|
{ |
|
get { return _OID; } |
|
set |
|
{ |
|
_OID = value; |
|
if (this.PropertyChanged != null) |
|
{ |
|
this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("ObjectID")); |
|
} |
|
} |
|
} |
|
|
|
//private string _KCDLBM; |
|
///// <summary> |
|
///// 扣除地类编码 |
|
///// </summary> |
|
//public string KCDLBM |
|
//{ |
|
// get { return _KCDLBM; } |
|
// set |
|
// { |
|
// _KCDLBM = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("KCDLBM")); |
|
// } |
|
// } |
|
//} |
|
|
|
//private string _GDLX; |
|
///// <summary> |
|
///// 耕地类型 |
|
///// </summary> |
|
//public string GDLX |
|
//{ |
|
// get { return _GDLX; } |
|
// set |
|
// { |
|
// _GDLX = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("GDLX")); |
|
// } |
|
// } |
|
//} |
|
//private double _XZDWKD; |
|
///// <summary> |
|
///// 线状地物宽度 |
|
///// </summary> |
|
//public double XZDWKD |
|
//{ |
|
// get { return _XZDWKD; } |
|
// set |
|
// { |
|
// _XZDWKD = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("XZDWKD")); |
|
// } |
|
// } |
|
//} |
|
//private string _TBXHDM; |
|
///// <summary> |
|
///// 图斑细化代码 |
|
///// </summary> |
|
//public string TBXHDM |
|
//{ |
|
// get { return _TBXHDM; } |
|
// set |
|
// { |
|
// _TBXHDM = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("TBXHDM")); |
|
// } |
|
// } |
|
//} |
|
//private string _TBXHMC; |
|
///// <summary> |
|
///// 图斑细化名称 |
|
///// </summary> |
|
//public string TBXHMC |
|
//{ |
|
// get { return _TBXHMC; } |
|
// set |
|
// { |
|
// _TBXHMC = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("TBXHMC")); |
|
// } |
|
// } |
|
//} |
|
//private string _ZZSXDM; |
|
///// <summary> |
|
///// 种植属性代码 |
|
///// </summary> |
|
//public string ZZSXDM |
|
//{ |
|
// get { return _ZZSXDM; } |
|
// set |
|
// { |
|
// _ZZSXDM = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("ZZSXDM")); |
|
// } |
|
// } |
|
//} |
|
//private string _ZZSXMC; |
|
///// <summary> |
|
///// 种植属性名称 |
|
///// </summary> |
|
//public string ZZSXMC |
|
//{ |
|
// get { return _ZZSXMC; } |
|
// set |
|
// { |
|
// _ZZSXMC = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("ZZSXMC")); |
|
// } |
|
// } |
|
//} |
|
//private string _CZCSXM; |
|
///// <summary> |
|
///// 城镇村属性码 |
|
///// </summary> |
|
//public string CZCSXM |
|
//{ |
|
// get { return _CZCSXM; } |
|
// set |
|
// { |
|
// _CZCSXM = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("CZCSXM")); |
|
// } |
|
// } |
|
//} |
|
//private string _GXSJ; |
|
///// <summary> |
|
///// 更新时间 |
|
///// </summary> |
|
//public string GXSJ |
|
//{ |
|
// get { return _GXSJ; } |
|
// set |
|
// { |
|
// _GXSJ = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("GXSJ")); |
|
// } |
|
// } |
|
//} |
|
//private string _EGeometry; |
|
///// <summary> |
|
///// 图形坐标串 |
|
///// </summary> |
|
//public string EGeometry |
|
//{ |
|
// get { return _EGeometry; } |
|
// set |
|
// { |
|
// _EGeometry = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("EGeometry")); |
|
// } |
|
// } |
|
//} |
|
//private string _DDTCBZ; |
|
///// <summary> |
|
///// 单独图层标志 |
|
///// </summary> |
|
//public string DDTCBZ |
|
//{ |
|
// get { return _DDTCBZ; } |
|
// set |
|
// { |
|
// _DDTCBZ = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("DDTCBZ")); |
|
// } |
|
// } |
|
//} |
|
//private string _DDTCMC; |
|
///// <summary> |
|
///// 单独图层名称 |
|
///// </summary> |
|
//public string DDTCMC |
|
//{ |
|
// get { return _DDTCMC; } |
|
// set |
|
// { |
|
// _DDTCMC = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("DDTCMC")); |
|
// } |
|
// } |
|
//} |
|
//private string _SFGX; |
|
///// <summary> |
|
///// 是否更新 |
|
///// </summary> |
|
//public string SFGX |
|
//{ |
|
// get { return _SFGX; } |
|
// set |
|
// { |
|
// _SFGX = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("SFGX")); |
|
// } |
|
// } |
|
//} |
|
//private string _WBGYY; |
|
///// <summary> |
|
///// 未变更原因 |
|
///// </summary> |
|
//public string WBGYY |
|
//{ |
|
// get { return _WBGYY; } |
|
// set |
|
// { |
|
// _WBGYY = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("WBGYY")); |
|
// } |
|
// } |
|
//} |
|
//private string _SFJZ; |
|
///// <summary> |
|
///// 是否举证 |
|
///// </summary> |
|
//public string SFJZ |
|
//{ |
|
// get { return _SFJZ; } |
|
// set |
|
// { |
|
// _SFJZ = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("SFJZ")); |
|
// } |
|
// } |
|
//} |
|
//private string _QKSM; |
|
///// <summary> |
|
///// 情况说明 |
|
///// </summary> |
|
//public string QKSM |
|
//{ |
|
// get { return _QKSM; } |
|
// set |
|
// { |
|
// _QKSM = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("QKSM")); |
|
// } |
|
// } |
|
//} |
|
//private string _LJLX; |
|
///// <summary> |
|
///// 类举类型 |
|
///// </summary> |
|
//public string LJLX |
|
//{ |
|
// get { return _LJLX; } |
|
// set |
|
// { |
|
// _LJLX = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("LJLX")); |
|
// } |
|
// } |
|
//} |
|
//private string _YWTBSM; |
|
///// <summary> |
|
///// 疑问图斑标识码 |
|
///// </summary> |
|
//public string YWTBSM |
|
//{ |
|
// get { return _YWTBSM; } |
|
// set |
|
// { |
|
// _YWTBSM = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("YWTBSM")); |
|
// } |
|
// } |
|
//} |
|
//private string _NBWQKSM; |
|
///// <summary> |
|
///// 农变未情况说明 |
|
///// </summary> |
|
//public string NBWQKSM |
|
//{ |
|
// get { return _NBWQKSM; } |
|
// set |
|
// { |
|
// _NBWQKSM = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("NBWQKSM")); |
|
// } |
|
// } |
|
//} |
|
//private string _SHLZQKSM; |
|
///// <summary> |
|
///// 水旱轮作情况说明 |
|
///// </summary> |
|
//public string SHLZQKSM |
|
//{ |
|
// get { return _SHLZQKSM; } |
|
// set |
|
// { |
|
// _SHLZQKSM = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("SHLZQKSM")); |
|
// } |
|
// } |
|
//} |
|
//private string _LNGDZB; |
|
///// <summary> |
|
///// 历年耕地占比 |
|
///// </summary> |
|
//public string LNGDZB |
|
//{ |
|
// get { return _LNGDZB; } |
|
// set |
|
// { |
|
// _LNGDZB = value; |
|
// if (this.PropertyChanged != null) |
|
// { |
|
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("LNGDZB")); |
|
// } |
|
// } |
|
//} |
|
} |
|
}
|
|
|