package request
|
|
import (
|
"github.com/shopspring/decimal"
|
"silkserver/constvar"
|
)
|
|
type GetAttendanceList struct {
|
PageInfo
|
Keyword string `json:"keyword"`
|
}
|
|
type DeleteAttendanceInfo struct {
|
Ids []uint `json:"ids"` //记录id
|
}
|
|
type GetAttendanceStatistic struct {
|
Month string `json:"month"` //月份
|
}
|
|
type UpdateAttendance struct {
|
Date string `json:"date"` //日期
|
WorkerId string `json:"workerId"` //人员id
|
Status constvar.AttendanceStatus `json:"status"` //状态
|
OverTimeDuration decimal.Decimal `json:"overTimeDuration"` //加班时长
|
}
|