Merge branch 'dev/daily-checklist' into 'development'

add master data config checklist

See merge request mbugroup/lti-api!139
This commit is contained in:
Hafizh A. Y.
2026-01-08 02:18:22 +00:00
12 changed files with 537 additions and 13 deletions
+17
View File
@@ -0,0 +1,17 @@
package entities
import (
"time"
"gorm.io/gorm"
)
type ConfigChecklist struct {
Id uint `gorm:"primaryKey"`
Date time.Time `gorm:"type:date;not null"`
PercentageThresholdBad int `gorm:"not null"`
PercentageThresholdEnough int `gorm:"not null"`
CreatedAt time.Time `gorm:"autoCreateTime"`
UpdatedAt time.Time `gorm:"autoUpdateTime"`
DeletedAt gorm.DeletedAt `gorm:"index" json:"-"`
}