18 lines
604 B
Go
18 lines
604 B
Go
|
package model
|
||
|
|
||
|
import "github.com/fonchain_enterprise/fonchain-main/api/oa"
|
||
|
|
||
|
type OaMonthRes struct {
|
||
|
OaMonth *oa.QueryOaMonthIsBatchRes `json:"oaMonth"`
|
||
|
Field *oa.OaMonthField `json:"field"`
|
||
|
OaDate *CollectionDetailAllRes `json:"oaDate"`
|
||
|
}
|
||
|
|
||
|
type CollectionDetailAllRes struct {
|
||
|
OaDates []*CollectionEmployeesDetailRes `json:"oaDates"`
|
||
|
Page int32 `json:"page"`
|
||
|
PageSize int32 `json:"pageSize"`
|
||
|
Total int `json:"total"`
|
||
|
UpdateTime string `json:"updateTime"`
|
||
|
}
|