diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/app/attendance/vo/AttendancePunchPageVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/app/attendance/vo/AttendancePunchPageVO.java index 2eff07c0..9acc233c 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/app/attendance/vo/AttendancePunchPageVO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/app/attendance/vo/AttendancePunchPageVO.java @@ -1,9 +1,18 @@ package cn.iocoder.yudao.module.system.controller.app.attendance.vo; +import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; @Data public class AttendancePunchPageVO { - - + @Schema(description = "是否在考勤组 0否 1是") + private Integer inGroup; + @Schema(description = "当天是否需要考勤 0否 1是") + private Integer todayNeedAttendance; + @Schema(description = "是否允许外勤打卡 0否 1是") + private Integer fieldworkFlag; + @Schema(description = "是否在打卡点 0否 1是") + private Integer checkInPoint; +// @Schema(description = "") +// private Integer checkInPoint; }