31 lines
439 B
Go
31 lines
439 B
Go
package database
|
|
|
|
import "github.com/shopspring/decimal"
|
|
|
|
type ShopAuto struct {
|
|
ID int
|
|
Name string
|
|
Price decimal.Decimal
|
|
}
|
|
|
|
type ShopBusiness struct {
|
|
ID int
|
|
Name string
|
|
Price decimal.Decimal
|
|
Income decimal.Decimal
|
|
}
|
|
|
|
type ShopMaid struct {
|
|
ID int
|
|
Name string
|
|
Price decimal.Decimal
|
|
Income decimal.Decimal
|
|
}
|
|
|
|
type ShopMiner struct {
|
|
ID int
|
|
Name string
|
|
Price decimal.Decimal
|
|
Income decimal.Decimal
|
|
}
|