Subversion Repositories SmartDukaan

Rev

Rev 6048 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6048 Rev 6092
Line 14... Line 14...
14
class RechargeOrder(ImmediateConsumedOrder):
14
class RechargeOrder(ImmediateConsumedOrder):
15
    '''
15
    '''
16
    classdocs
16
    classdocs
17
    '''
17
    '''
18
    status = Field(Integer)
18
    status = Field(Integer)
-
 
19
    description = Field(String(256))
19
    spiceTID = Field(String(50))
20
    spiceTID = Field(String(50))
20
    responseTimestamp = Field(DateTime)
21
    responseTimestamp = Field(DateTime)
21
    using_options(shortnames=True, inheritance='multi')
22
    using_options(shortnames=True, inheritance='multi')
22
    using_table_options(mysql_engine="InnoDB")
23
    using_table_options(mysql_engine="InnoDB")
23
 
24