| Line 166... |
Line 166... |
| 166 |
advanceAmount = Field(Float, default=0, server_default="0")
|
166 |
advanceAmount = Field(Float, default=0, server_default="0")
|
| 167 |
productCondition = Field(Integer, default=0, server_default="0")
|
167 |
productCondition = Field(Integer, default=0, server_default="0")
|
| 168 |
dataProtectionInsurer = Field(Integer, default=0, server_default="0")
|
168 |
dataProtectionInsurer = Field(Integer, default=0, server_default="0")
|
| 169 |
dataProtectionAmount = Field(Float, default=0, server_default="0")
|
169 |
dataProtectionAmount = Field(Float, default=0, server_default="0")
|
| 170 |
taxType = Field(Integer, default=0, server_default="0")
|
170 |
taxType = Field(Integer, default=0, server_default="0")
|
| - |
|
171 |
logisticsTransactionId = Field(String(100))
|
| 171 |
using_options(shortnames=True)
|
172 |
using_options(shortnames=True)
|
| 172 |
using_table_options(mysql_engine="InnoDB")
|
173 |
using_table_options(mysql_engine="InnoDB")
|
| 173 |
|
174 |
|
| 174 |
class CodVerificationAgent(Entity):
|
175 |
class CodVerificationAgent(Entity):
|
| 175 |
orderId = Field(Integer, primary_key=True, autoincrement=True)
|
176 |
orderId = Field(Integer, primary_key=True, autoincrement=True)
|
| Line 604... |
Line 605... |
| 604 |
returnReason = Field(String(100))
|
605 |
returnReason = Field(String(100))
|
| 605 |
freebieItemId = Field(String(20))
|
606 |
freebieItemId = Field(String(20))
|
| 606 |
productTitle = Field(String(200))
|
607 |
productTitle = Field(String(200))
|
| 607 |
using_options(shortnames=True)
|
608 |
using_options(shortnames=True)
|
| 608 |
using_table_options(mysql_engine="InnoDB")
|
609 |
using_table_options(mysql_engine="InnoDB")
|
| - |
|
610 |
|
| - |
|
611 |
class FlipkartFaSalesSnapshot(Entity):
|
| - |
|
612 |
dateOfSale = Field(Date, primary_key=True)
|
| - |
|
613 |
item_id = Field(Integer, primary_key=True,autoincrement=False)
|
| - |
|
614 |
totalOrderCount = Field(Integer)
|
| - |
|
615 |
isOutOfStock = Field(Boolean)
|
| - |
|
616 |
totalSale = Field(Numeric(precision=11, scale=3, asdecimal=False))
|
| - |
|
617 |
ourPrice = Field(Float)
|
| - |
|
618 |
using_options(shortnames=True)
|
| - |
|
619 |
using_table_options(mysql_engine="InnoDB")
|