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

134 lines
3.6 KiB

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kingo.PluginServiceInterface
{
/// <summary>
/// 内业预审结果
/// </summary>
[Serializable]
public class NYYSResult //: INotifyPropertyChanged
{
//public event PropertyChangedEventHandler PropertyChanged;
/// <summary>
/// ObjectID
/// </summary>
public int ObjectID { get; set; }
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 _TBWYBSM;
/// <summary>
/// 图斑唯一标识码
/// </summary>
public string TBBSM
{
get { return _TBWYBSM; }
set
{
_TBWYBSM = value;
//if (this.PropertyChanged != null)
//{
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("TBBSM"));
//}
}
}
private string _NYYPDL;
/// <summary>
/// 内业预判地类
/// </summary>
public string NYYPDL
{
get { return _NYYPDL; }
set
{
_NYYPDL = value;
//if (this.PropertyChanged != null)
//{
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("NYYPDL"));
//}
}
}
private int _SFXYWY;
/// <summary>
/// 是否需要外业:1-是,0,-否
/// </summary>
public int SFXYWY
{
get { return _SFXYWY; }
set
{
_SFXYWY = value;
//if (this.PropertyChanged != null)
//{
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("SFXYWY"));
//}
}
}
private string _YPSM;
/// <summary>
/// 预判说明
/// </summary>
public string YPSM
{
get { return _YPSM; }
set
{
_YPSM = value;
//if (this.PropertyChanged != null)
//{
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("YPSM"));
//}
}
}
private string _YPRY;
/// <summary>
/// 预判人员
/// </summary>
public string YPRY
{
get { return _YPRY; }
set
{
_YPRY = value;
//if (this.PropertyChanged != null)
//{
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("YPRY"));
//}
}
}
private string _YPSJ;
/// <summary>
/// 预判时间
/// </summary>
public string YPSJ
{
get { return _YPSJ; }
set
{
_YPSJ = value;
//if (this.PropertyChanged != null)
//{
// this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("YPSJ"));
//}
}
}
}
}