Replace gorm.io/gen header with gormcol

This commit is contained in:
2026-03-29 18:51:45 +02:00
parent 987e55de10
commit 894cd458f5
4 changed files with 11 additions and 62 deletions

View File

@@ -1,31 +0,0 @@
// Code generated by gorm.io/gen. DO NOT EDIT.
// Code generated by gorm.io/gen. DO NOT EDIT.
// Code generated by gorm.io/gen. DO NOT EDIT.
package dbmodel
import "git.ma-al.com/goc_marek/gormcol"
const TableNamePsModuleShop = "ps_module_shop"
// PsModuleShop mapped from table <ps_module_shop>
type PsModuleShop struct {
IDModule int32 `gorm:"column:id_module;primaryKey" json:"id_module"`
IDShop int32 `gorm:"column:id_shop;primaryKey;index:id_shop,priority:1" json:"id_shop"`
EnableDevice bool `gorm:"column:enable_device;not null;default:7" json:"enable_device"`
}
// TableName PsModuleShop's table name
func (*PsModuleShop) TableName() string {
return TableNamePsModuleShop
}
var PsModuleShopCols = struct {
IDModule gormcol.Field
IDShop gormcol.Field
EnableDevice gormcol.Field
}{
IDModule: gormcol.Field{}.Set((&PsModuleShop{}).TableName(), "id_module"),
IDShop: gormcol.Field{}.Set((&PsModuleShop{}).TableName(), "id_shop"),
EnableDevice: gormcol.Field{}.Set((&PsModuleShop{}).TableName(), "enable_device"),
}

View File

@@ -1,31 +0,0 @@
// Code generated by gorm.io/gen. DO NOT EDIT.
// Code generated by gorm.io/gen. DO NOT EDIT.
// Code generated by gorm.io/gen. DO NOT EDIT.
package dbmodel
import "git.ma-al.com/goc_marek/gormcol"
const TableNamePsReassurance = "ps_reassurance"
// PsReassurance mapped from table <ps_reassurance>
type PsReassurance struct {
IDReassurance int32 `gorm:"column:id_reassurance;primaryKey;autoIncrement:true" json:"id_reassurance"`
IDShop int32 `gorm:"column:id_shop;not null" json:"id_shop"`
FileName string `gorm:"column:file_name;not null" json:"file_name"`
}
// TableName PsReassurance's table name
func (*PsReassurance) TableName() string {
return TableNamePsReassurance
}
var PsReassuranceCols = struct {
IDReassurance gormcol.Field
IDShop gormcol.Field
FileName gormcol.Field
}{
IDReassurance: gormcol.Field{}.Set((&PsReassurance{}).TableName(), "id_reassurance"),
IDShop: gormcol.Field{}.Set((&PsReassurance{}).TableName(), "id_shop"),
FileName: gormcol.Field{}.Set((&PsReassurance{}).TableName(), "file_name"),
}