32 lines
633 B
Nim
32 lines
633 B
Nim
type
|
|
User* = ref object of RootObj
|
|
id*: int
|
|
firstName*: string
|
|
lastName*: string
|
|
email*: string
|
|
phone*: string
|
|
password*: string
|
|
createdAt*: string
|
|
updatedAt*: string
|
|
accessLevel*: int
|
|
|
|
Orders* = ref object
|
|
id*: int
|
|
buyerId*: int
|
|
orderDate*: string
|
|
orderStatus*: string
|
|
shippingAddressId*: int
|
|
billingAddressId*: int
|
|
createdAt*: string
|
|
updatedAt*: string
|
|
|
|
Products* = ref object
|
|
id*: int
|
|
name*: string
|
|
description*: string
|
|
price*: int
|
|
quantity*: int
|
|
sellerId*: int
|
|
createdAt*: string
|
|
updatedAt*: string
|
|
imageLink*: string
|