修改二值数据类型,由String->Integer

This commit is contained in:
Cool 2025-03-03 19:41:54 +08:00
parent c253d6074e
commit 5fe147a973
3 changed files with 5 additions and 5 deletions

View File

@ -59,7 +59,7 @@ public class CeesDormitoryInfo implements Serializable {
/**男/女*/
@Excel(name = "男/女", width = 15)
@ApiModelProperty(value = "男/女")
private String dormitoryType;
private Integer dormitoryType;
/**宿舍人数*/
@Excel(name = "宿舍人数", width = 15)
@ApiModelProperty(value = "宿舍人数")
@ -67,5 +67,5 @@ public class CeesDormitoryInfo implements Serializable {
/**宿舍状态0没满1已满*/
@Excel(name = "宿舍状态0没满1已满", width = 15)
@ApiModelProperty(value = "宿舍状态0没满1已满")
private String dormitoryStatus;
private Integer dormitoryStatus;
}

View File

@ -107,7 +107,7 @@ public class CeesWaiTeacher implements Serializable {
/**性别*/
@Excel(name = "性别", width = 15)
@ApiModelProperty(value = "性别")
private String sex;
private Integer sex;
/**年龄*/
@Excel(name = "年龄", width = 15)
@ApiModelProperty(value = "年龄")
@ -123,7 +123,7 @@ public class CeesWaiTeacher implements Serializable {
/**是否住宿*/
@Excel(name = "是否住宿", width = 15)
@ApiModelProperty(value = "是否住宿")
private String dormitoryStatus;
private Integer dormitoryStatus;
/**开户所在地*/
@Excel(name = "开户所在地", width = 15)
@ApiModelProperty(value = "开户所在地")

View File

@ -79,7 +79,7 @@ public class Student implements Serializable {
/**是否第一次阅卷*/
@Excel(name = "是否第一次阅卷", width = 15)
@ApiModelProperty(value = "是否第一次阅卷")
private String checked;
private Integer checked;
/**组id*/
@Excel(name = "组id", width = 15)
@ApiModelProperty(value = "组id")