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.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Kingo.Plugin.BGResultManager.Model
|
|
|
|
|
{
|
|
|
|
|
public class DLBMTJEntity
|
|
|
|
|
{
|
|
|
|
|
private string yjdl;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///一级地类
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string YJDL
|
|
|
|
|
{
|
|
|
|
|
get { return yjdl; }
|
|
|
|
|
set { yjdl = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private List<string> ejdllist;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 对应二级地类集合
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<string> EJDLList
|
|
|
|
|
{
|
|
|
|
|
get { return ejdllist; }
|
|
|
|
|
set { ejdllist = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|