1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.landy.gum.sys.query;
|
| import com.landy.framework.core.query.BaseQueryCondition;
|
| public class DictionaryListQueryCondition extends BaseQueryCondition {
|
| private String bbbrId;
|
| public String getBbbrId() {
| return bbbrId;
| }
|
| public void setBbbrId(String bbbrId) {
| this.bbbrId = bbbrId;
| }
|
| }
|
|