14 lines
330 B
Go
14 lines
330 B
Go
|
package catalog
|
||
|
|
||
|
type DomainCatalog struct {
|
||
|
// bun.BaseModel `bun:"select:api_catalog"`
|
||
|
Id int64
|
||
|
Code string
|
||
|
Name string
|
||
|
IsActive bool `bun:"is_active,type:integer"`
|
||
|
Properties string `bun:"properties"`
|
||
|
DetailText string `bun:"detailText"`
|
||
|
Price string `bun:"price"`
|
||
|
AvailableQunatity int64 `bun:"available_quantity"`
|
||
|
}
|