using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Kingo.PluginServiceInterface.Model { [Serializable] public class SHJGInfo : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; private int _bsm; /// /// 标识码 /// public int BSM { get { return _bsm; } set { _bsm = value; if (this.PropertyChanged != null) { this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("BSM")); } } } private string _TBBSM; /// /// 图斑标识码 /// public string TBBSM { get { return _TBBSM; } set { _TBBSM = value; if (this.PropertyChanged != null) { this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("TBBSM")); } } } private string _DLHCJG; /// /// 地类核查结果 /// public string DLHCJG { get { return _DLHCJG; } set { _DLHCJG = value; if (this.PropertyChanged != null) { this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("DLHCJG")); } } } private string _DLHCSM; /// /// 地类核查说明 /// public string DLHCSM { get { return _DLHCSM; } set { _DLHCSM = value; if (this.PropertyChanged != null) { this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("DLHCSM")); } } } private string _SXHCJG; /// /// 属性核查结果 /// public string SXHCJG { get { return _SXHCJG; } set { _SXHCJG = value; if (this.PropertyChanged != null) { this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("SXHCJG")); } } } private string _SXHCSM; /// /// 属性核查说明 /// public string SXHCSM { get { return _SXHCSM; } set { _SXHCSM = value; if (this.PropertyChanged != null) { this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("SXHCSM")); } } } private string _TXHCJG; /// /// 图形核查结果 /// public string TXHCJG { get { return _TXHCJG; } set { _TXHCJG = value; if (this.PropertyChanged != null) { this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("TXHCJG")); } } } private string _TXHCSM; /// /// 图形核查说明 /// public string TXHCSM { get { return _TXHCSM; } set { _TXHCSM = value; if (this.PropertyChanged != null) { this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("TXHCSM")); } } } private string _JGSM; /// /// 审核说明 /// public string JGSM { get { return _JGSM; } set { _JGSM = value; if (this.PropertyChanged != null) { this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("JGSM")); } } } private string _SHRY; /// /// 审核人员 /// public string SHRY { get { return _SHRY; } set { _SHRY = value; if (this.PropertyChanged != null) { this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("SHRY")); } } } private string _SHSJ; /// /// 审核时间 /// public string SHSJ { get { return _SHSJ; } set { _SHSJ = value; if (this.PropertyChanged != null) { this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("SHSJ")); } } } private string _SHJB; /// /// 审核级别 /// public string SHJB { get { return _SHJB; } set { _SHJB = value; if (this.PropertyChanged != null) { this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("SHJB")); } } } private string _BZ; /// /// 审核备注 /// public string BZ { get { return _BZ; } set { _BZ = value; if (this.PropertyChanged != null) { this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("BZ")); } } } } }