20 lines
629 B
Go
20 lines
629 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 TableNameStaService = "staServices"
|
|
|
|
// StaService mapped from table <staServices>
|
|
type StaService struct {
|
|
ServiceID int32 `gorm:"column:serviceID;type:INTEGER" json:"serviceID"`
|
|
ServiceName string `gorm:"column:serviceName;type:VARCHAR(100)" json:"serviceName"`
|
|
Description string `gorm:"column:description;type:VARCHAR(1000)" json:"description"`
|
|
}
|
|
|
|
// TableName StaService's table name
|
|
func (*StaService) TableName() string {
|
|
return TableNameStaService
|
|
}
|