config.py 344 B

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