huangzhen
2023-09-25 1614615fc9319b8626eb028598b894311992c033
exam-system/src/main/java/com/gkhy/exam/noncoalmine/model/query/TrainingInstitutionQuery.java
@@ -1,6 +1,9 @@
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
@@ -8,12 +11,16 @@
 * @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;
}