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.
30 lines
593 B
30 lines
593 B
using System.Collections.Generic; |
|
|
|
namespace Kingo.Plugin.YJJK.ModelEntity |
|
{ |
|
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; } |
|
} |
|
|
|
|
|
} |
|
}
|
|
|