| | |
| | | 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 |
| | |
| | | * @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; |
| | | } |