考勤管理还在做

This commit is contained in:
XaoLi717 2024-11-22 10:07:20 +08:00
parent b5d50d499d
commit 4ab2a56eb9
2 changed files with 45 additions and 45 deletions

View File

@ -2,7 +2,7 @@ import request from '@/config/axios'
// 考勤数据 VO
export interface KqdataVO {
id: number // id
id: number|null // id
userName: string // 员工
userId: number // 员工id
deptName: string // 部门

View File

@ -7,7 +7,7 @@ export interface KqglVO {
userName: string // 用户名字
deptId: number // 部门id
deptName: string // 部门名字
date: Date // 考勤日期
date: Date|number// 考勤日期
}
// 考勤管理 API