package com.thhy.staff.modules.biz.dorm.entity;
|
|
import com.thhy.general.annotations.Idkey;
|
import com.thhy.staff.modules.biz.dormuser.entity.DormUserVo;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
@Data
|
public class DormListVo implements Serializable {
|
|
/**
|
* 主键
|
*/
|
|
@Idkey
|
private String dormId;
|
|
|
/**
|
* 楼号
|
*/
|
|
|
private String buildNum;
|
|
/**
|
* 单元号
|
*/
|
|
|
private Integer buildUnit;
|
|
/**
|
* 楼层
|
*/
|
|
|
private Integer floorNum;
|
|
/**
|
* 房间号
|
*/
|
|
|
private String dormNum;
|
|
/**
|
* 床位数
|
*/
|
|
|
private Integer bedNum;
|
|
private int dormUserCount;
|
|
private String dormAdmin;
|
|
private String dormAdminName;
|
private Integer sex;
|
private DormDto dormDto;
|
private List<DormUserVo> dormUserVos;
|
}
|