Merge branch 'imbs' into dev
This commit is contained in:
commit
ec36054bd9
1 changed files with 23 additions and 0 deletions
|
@ -19,3 +19,26 @@ type NewWeeklyReport struct {
|
||||||
// Total time spent on testing
|
// Total time spent on testing
|
||||||
TestingTime int `json:"testingTime"`
|
TestingTime int `json:"testingTime"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type WeeklyReport struct {
|
||||||
|
// The ID of the report
|
||||||
|
ReportId int `json:"reportId" db:"report_id"`
|
||||||
|
// The user id of the user who submitted the report
|
||||||
|
UserId int `json:"userId" db:"user_id"`
|
||||||
|
// The name of the project, as it appears in the database
|
||||||
|
ProjectName string `json:"projectName"`
|
||||||
|
// The week number
|
||||||
|
Week int `json:"week"`
|
||||||
|
// Total time spent on development
|
||||||
|
DevelopmentTime int `json:"developmentTime"`
|
||||||
|
// Total time spent in meetings
|
||||||
|
MeetingTime int `json:"meetingTime"`
|
||||||
|
// Total time spent on administrative tasks
|
||||||
|
AdminTime int `json:"adminTime"`
|
||||||
|
// Total time spent on personal projects
|
||||||
|
OwnWorkTime int `json:"ownWorkTime"`
|
||||||
|
// Total time spent on studying
|
||||||
|
StudyTime int `json:"studyTime"`
|
||||||
|
// Total time spent on testing
|
||||||
|
TestingTime int `json:"testingTime"`
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue