Подготовить HY2XS к production-сборке

This commit is contained in:
2026-04-25 23:13:12 +05:00
commit 84a4e94567
277 changed files with 26513 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package entity
import "time"
type BaseEntity struct {
Id *int64 `gorm:"column:id;primaryKey" json:"id"`
CreateTime *time.Time `gorm:"column:create_time;default:null" json:"createTime"`
UpdateTime *time.Time `gorm:"column:update_time;default:null" json:"updateTime"`
}