zhangqian
2024-04-23 9b17ac4dc5670a0468780b4219520f87a2131de1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package request
 
type GetAttendanceList struct {
    PageInfo
    Keyword string `json:"keyword"`
}
 
type DeleteAttendanceInfo struct {
    Ids []uint `json:"ids"` //记录id
}
 
type GetAttendanceStatistic struct {
    Month string `json:"month"` //月份
}