1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.gkhy.exam.noncoalmine.model.query;
|
| import lombok.Data;
|
| /**
| * @email 1603559716@qq.com
| * @author: zf
| * @date: 2023/9/13
| * @time: 16:33
| */
| @Data
| public class TrainingInstitutionQuery {
| //机构名称
| private String institutionName;
| //是否为煤矿:0为非,1是
| private Byte isCm;
| //区划编码
| private String regionCode;
| }
|
|