Loggest thine Stuff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

110 lines
1.9 KiB

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.13.0
package mysqlcore
import (
"database/sql"
"time"
"git.aiterp.net/stufflog3/stufflog3/ports/mysql/sqltypes"
)
type Item struct {
ID int
ScopeID int
ProjectRequirementID sql.NullInt32
OwnerID string
Name string
Description string
CreatedTime time.Time
AcquiredTime sql.NullTime
ScheduledDate sqltypes.NullDate
}
type ItemStatProgress struct {
ItemID int
StatID int
Acquired int
Required int
}
type Project struct {
ID int
ScopeID int
OwnerID string
Name string
Status int
Description string
CreatedTime time.Time
}
type ProjectRequirement struct {
ID int
ScopeID int
ProjectID int
Name string
Status int
Description string
IsCoarse bool
AggregateRequired int
}
type ProjectRequirementStat struct {
ProjectRequirementID int
StatID int
Required int
}
type Scope struct {
ID int
Name string
Abbreviation string
CustomLabels sqltypes.NullRawMessage
}
type ScopeMember struct {
ScopeID int
UserID string
Name string
Owner bool
}
type Sprint struct {
ID int
ScopeID int
Name string
Description string
FromTime time.Time
ToTime time.Time
IsTimed bool
IsCoarse bool
IsUnweighted bool
Kind int
AggregateName string
AggregateRequired int
TagsCsv sql.NullString
}
type SprintPart struct {
SprintID int
ObjectID int
Required int
}
type Stat struct {
ID int
ScopeID int
Name string
Description string
Weight float64
AllowedAmounts sqltypes.NullRawMessage
IsPrimary bool
}
type Tag struct {
ObjectKind int32
ObjectID int
TagName string
}