package com.xjrsoft.module.room.vo; import com.alibaba.excel.annotation.ExcelProperty; import com.alibaba.excel.annotation.ExcelIgnore; import com.alibaba.excel.annotation.write.style.ContentStyle; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import com.xjrsoft.common.annotation.Trans; import com.xjrsoft.common.enums.TransType; import java.time.LocalTime; import java.time.LocalDateTime; import java.math.BigDecimal; import java.util.Date; /** * @title: 留校住宿申请分页列表出参 * @Author szs * @Date: 2024-01-02 * @Version 1.0 */ @Data public class WfRoomStayOvernightPageVo { /** * 主键编号 */ @ContentStyle(dataFormat = 49) @ExcelProperty("主键编号") @ApiModelProperty("主键编号") private String id; /** * 创建人 */ @ContentStyle(dataFormat = 49) @ExcelProperty("创建人") @ApiModelProperty("创建人") private Long createUserId; /** * 创建时间 */ @ContentStyle(dataFormat = 49) @ExcelProperty("创建时间") @ApiModelProperty("创建时间") private Date createDate; /** * 修改人 */ @ContentStyle(dataFormat = 49) @ExcelProperty("修改人") @ApiModelProperty("修改人") private Long modifyUserId; /** * 修改时间 */ @ContentStyle(dataFormat = 49) @ExcelProperty("修改时间") @ApiModelProperty("修改时间") private Date modifyDate; /** * 删除标记 */ @ContentStyle(dataFormat = 49) @ExcelProperty("删除标记") @ApiModelProperty("删除标记") private Integer deleteMark; /** * 有效标志 */ @ContentStyle(dataFormat = 49) @ExcelProperty("有效标志") @ApiModelProperty("有效标志") private Integer enabledMark; /** * 序号 */ @ContentStyle(dataFormat = 49) @ExcelProperty("序号") @ApiModelProperty("序号") private Integer sortCode; /** * 申请人 */ @ContentStyle(dataFormat = 49) @ExcelProperty("申请人") @ApiModelProperty("申请人") private Long applicantUserId; /** * 班主任用户编号 */ @ContentStyle(dataFormat = 49) @ExcelProperty("班主任用户编号") @ApiModelProperty("班主任用户编号") private Long headTeacherId; /** * 寝室编号(room) */ @ContentStyle(dataFormat = 49) @ExcelProperty("寝室编号(room)") @ApiModelProperty("寝室编号(room)") private Long roomId; /** * 寝室+床位名称 */ @ContentStyle(dataFormat = 49) @ExcelProperty("寝室+床位名称") @ApiModelProperty("寝室+床位名称") private String roomBedNumber; /** * 学号 */ @ContentStyle(dataFormat = 49) @ExcelProperty("学号") @ApiModelProperty("学号") private String studentId; /** * 性别 */ @ContentStyle(dataFormat = 49) @ExcelProperty("性别") @ApiModelProperty("性别") private String genderName; /** * 班级 */ @ContentStyle(dataFormat = 49) @ExcelProperty("班级") @ApiModelProperty("班级") private String className; /** * 开始时间 */ @ContentStyle(dataFormat = 49) @ExcelProperty("开始时间") @ApiModelProperty("开始时间") private Date startTime; /** * 结束时间 */ @ContentStyle(dataFormat = 49) @ExcelProperty("结束时间") @ApiModelProperty("结束时间") private Date endTime; /** * 时长(天) */ @ContentStyle(dataFormat = 49) @ExcelProperty("时长(天)") @ApiModelProperty("时长(天)") private Integer duration; /** * 联系电话 */ @ContentStyle(dataFormat = 49) @ExcelProperty("联系电话") @ApiModelProperty("联系电话") private String mobile; /** * 监护人电话 */ @ContentStyle(dataFormat = 49) @ExcelProperty("监护人电话") @ApiModelProperty("监护人电话") private String guardianMobile; /** * 备注 */ @ContentStyle(dataFormat = 49) @ExcelProperty("备注") @ApiModelProperty("备注") private String remark; /** * 状态(1:结束 0:未结束) */ @ContentStyle(dataFormat = 49) @ExcelProperty("状态(1:结束 0:未结束)") @ApiModelProperty("状态(1:结束 0:未结束)") private Integer status; }