This commit is contained in:
teddy
2025-04-18 15:10:49 +07:00
parent a0984902e0
commit f7db944b97
4 changed files with 95 additions and 67 deletions

15
model/model.go Normal file
View File

@@ -0,0 +1,15 @@
package model
import "time"
type Birthday struct {
Email string `json:"email"`
Fullname string `json:"fullname"`
Birthday time.Time `json:"birthday"`
}
type Workanniversary struct {
Email string `json:"email"`
Fullname string `json:"fullname"`
HireDate time.Time `json:"hire_date"`
}