initial commit
This commit is contained in:
30
database/shop.go
Normal file
30
database/shop.go
Normal file
@@ -0,0 +1,30 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user