教育训练处考试制证系统后端
zf
2024-02-19 1936cef71ca4ef95d52c951b4af5948c7885b893
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.gkhy.exam.noncoalmine.model.query;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.beans.factory.annotation.Value;
 
/**
 * @email 1603559716@qq.com
 * @author: zf
 * @date: 2023/9/13
 * @time: 16:33
 */
@ApiModel(value = "机构擦查询实体")
@Data
public class TrainingInstitutionQuery {
    //机构名称
    @ApiModelProperty(value = "机构名称")
    private String institutionName;
    //是否为煤矿:0为非,1是
    @ApiModelProperty(value = "是否为煤矿:0为非,1是")
    private Byte isCm;
    //区划编码
    @ApiModelProperty(value = "区划编码")
    private String districtCode;
 
    private Long userId;
}