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