9 lines
224 B
Go
9 lines
224 B
Go
|
package model
|
||
|
|
||
|
type CollectionExportReq struct {
|
||
|
StaffUIDs []uint64 `json:"staffUIDs"`
|
||
|
DepartmentUID int64 `json:"departmentUID"`
|
||
|
Month string `json:"month"`
|
||
|
ExportType string `json:"exportType"`
|
||
|
}
|