fix
zhangqian
2023-08-10 a18a2c98ed758d08cbbe102bf5225c5a4cd001c7
model/timeSpent.go
@@ -12,18 +12,18 @@
   // TimeSpent 花费时间
   TimeSpent struct {
      Id   int    `json:"id" gorm:"column:id;primary_key;AUTO_INCREMENT"`
      Name   string    `json:"name" gorm:"column:name"`
      Name string `json:"name" gorm:"column:name;type:varchar(255);not null;default:'';comment:名称"`
   }
   // TimeSpentSearch 花费时间搜索条件
   TimeSpentSearch struct {
      TimeSpent
      Orm *gorm.DB
        QueryClass  constvar.TimeSpentQueryClass
        KeywordType constvar.TimeSpentKeywordType
        Keyword     string
        PageNum  int
        PageSize int
      Orm         *gorm.DB
      QueryClass  constvar.TimeSpentQueryClass
      KeywordType constvar.TimeSpentKeywordType
      Keyword     string
      PageNum     int
      PageSize    int
   }
)