using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 三级联动.Model
{
    class China
    {
        private string code;

        public string Code
        {
            get { return code; }
            set { code = value; }
        }
        private string name;

        public string Name
        {
            get { return name; }
            set { name = value; }
        }
        private string parentcode;

        public string Parentcode
        {
            get { return parentcode; }
            set { parentcode = value; }
        }
    }
}
实体类

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-03-27
  • 2021-07-25
  • 2021-07-01
  • 2022-12-23
猜你喜欢
  • 2021-11-24
  • 2022-12-23
  • 2021-10-19
  • 2021-09-06
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案