123456789 |
- from .__load__ import *
- class Config(Model):
- __table__ = 'config'
- __comment__ = '配置表'
- id = Fields(type='int', primaryKey=True, autoIncrement=True, comment='ID')
- cate_id = Fields(type='int', comment='默认分类', default='1')
- cdate = Fields(type='int', default='time', comment='创建时间')
|