新增日志添加提交状态

This commit is contained in:
aikai 2024-04-15 16:06:31 +08:00
parent 989e63e026
commit 764a86601b

View File

@ -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;
}