package request import ( "aps_crm/constvar" "aps_crm/model" ) type AddTimeSpent struct { model.TimeSpent } type UpdateTimeSpent struct { Id int `json:"id"` model.TimeSpent } type GetTimeSpentList struct { PageInfo QueryClass constvar.TimeSpentQueryClass `json:"queryClass"` KeywordType constvar.TimeSpentKeywordType `json:"keywordType"` Keyword string `json:"keyword"` }