Replace gorm.io/gen header with gormcol
This commit is contained in:
@@ -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"),
|
||||
}
|
||||
@@ -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"),
|
||||
}
|
||||
11
gen.go
11
gen.go
@@ -336,6 +336,11 @@ func (m *GormGen) cleanModelContent(content []byte) []byte {
|
||||
for _, line := range lines {
|
||||
trimmed := strings.TrimSpace(line)
|
||||
|
||||
// Skip gorm.io/gen header comments.
|
||||
if strings.Contains(trimmed, "Code generated by gorm.io/gen") {
|
||||
continue
|
||||
}
|
||||
|
||||
if trimmed == "import (" {
|
||||
importStarted = true
|
||||
newLines = append(newLines, line)
|
||||
@@ -368,5 +373,11 @@ func (m *GormGen) cleanModelContent(content []byte) []byte {
|
||||
result = strings.Join(newLines, "\n")
|
||||
result = strings.ReplaceAll(result, "psCategoryDo", "")
|
||||
|
||||
// Remove leading empty lines.
|
||||
result = strings.TrimLeft(result, "\n")
|
||||
|
||||
// Add gormcol header comment at the top.
|
||||
result = "// Code generated by gormcol. DO NOT EDIT.\n\n" + result
|
||||
|
||||
return []byte(result)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user