21 lines
752 B
Go
21 lines
752 B
Go
// 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 models
|
|
|
|
const TableNameCrpNPCDivision = "crpNPCDivisions"
|
|
|
|
// CrpNPCDivision mapped from table <crpNPCDivisions>
|
|
type CrpNPCDivision struct {
|
|
DivisionID int32 `gorm:"column:divisionID;type:INTEGER" json:"divisionID"`
|
|
DivisionName string `gorm:"column:divisionName;type:VARCHAR(100)" json:"divisionName"`
|
|
Description string `gorm:"column:description;type:VARCHAR(1000)" json:"description"`
|
|
LeaderType string `gorm:"column:leaderType;type:VARCHAR(100)" json:"leaderType"`
|
|
}
|
|
|
|
// TableName CrpNPCDivision's table name
|
|
func (*CrpNPCDivision) TableName() string {
|
|
return TableNameCrpNPCDivision
|
|
}
|