using System.Collections.Generic;
namespace Kingo.Plugin.YJJK.ModelEntity
{
public class DLBMTJEntity
{
private string yjdl;
///
///一级地类
///
public string YJDL
{
get { return yjdl; }
set { yjdl = value; }
}
private List ejdllist;
///
/// 对应二级地类集合
///
public List EJDLList
{
get { return ejdllist; }
set { ejdllist = value; }
}
}
}