| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package com.xjrsoft.module.attendance.vo;
- 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 dzx
- * @Date: 2024-05-20
- * @Version 1.0
- */
- @Data
- public class AttendanceMessageSetPageVo {
- /**
- *
- */
- @ApiModelProperty("")
- private String id;
- /**
- *
- */
- @ApiModelProperty("")
- private Long createUserId;
- /**
- *
- */
- @ApiModelProperty("")
- private Date createDate;
- /**
- *
- */
- @ApiModelProperty("")
- private Long modifyUserId;
- /**
- *
- */
- @ApiModelProperty("")
- private Date modifyDate;
- /**
- *
- */
- @ApiModelProperty("")
- private Integer deleteMark;
- /**
- *
- */
- @ApiModelProperty("")
- private Integer enabledMark;
- /**
- *
- */
- @ApiModelProperty("")
- private Integer sortCode;
- /**
- * 消息类别(1:迟到消息 2:旷课消息 3:缺勤消息)
- */
- @ApiModelProperty("消息类别(1:迟到消息 2:旷课消息 3:缺勤消息)")
- private Integer messageCategory;
- /**
- * 时间段(1:上午 2:下午 3:晚上 4:返校)
- */
- @ApiModelProperty("时间段(1:上午 2:下午 3:晚上 4:返校)")
- private Integer timePeriod;
- /**
- * 指定人员
- */
- @ApiModelProperty("指定人员")
- private String userRelation;
- }
|