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.
82 lines
1.5 KiB
82 lines
1.5 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Kingo.PluginServiceInterface.Model |
|
{ |
|
public class QSDWinformation |
|
{ |
|
/// <summary> |
|
/// 权属单位名称 |
|
/// </summary> |
|
private string _qsdwmc; |
|
|
|
public string Qsdwmc |
|
{ |
|
get |
|
{ |
|
return _qsdwmc; |
|
} |
|
|
|
set |
|
{ |
|
_qsdwmc = value; |
|
} |
|
} |
|
/// <summary> |
|
/// 权属单位代码 |
|
/// </summary> |
|
private string _qsdwdm; |
|
public string Qsdwdm |
|
{ |
|
get |
|
{ |
|
return _qsdwdm; |
|
} |
|
|
|
set |
|
{ |
|
_qsdwdm = value; |
|
} |
|
} |
|
/// <summary> |
|
/// 坐落单位代码 |
|
/// </summary> |
|
private string _zldwdm; |
|
public string ZLDWDM |
|
{ |
|
get |
|
{ |
|
return _zldwdm; |
|
} |
|
|
|
set |
|
{ |
|
_zldwdm = value; |
|
} |
|
} |
|
|
|
public string Zldwmc |
|
{ |
|
get |
|
{ |
|
return _zldwmc; |
|
} |
|
|
|
set |
|
{ |
|
_zldwmc = value; |
|
} |
|
} |
|
|
|
public bool HasCheck { get; set; } |
|
/// <summary> |
|
/// 坐落单位名称 |
|
/// </summary> |
|
private string _zldwmc; |
|
public List<QSDWinformation> ListQsdwInfor; |
|
|
|
} |
|
}
|
|
|