| 12345678910111213141516 | #!/usr/bin/env python# -*- coding: utf-8 -*-"""    demeter database    name:web_help_category.py    author:rabin"""from __load__ import *class Web_help_category(Model):	__table__ = 'web_help_category'	__comment__ = '帮助分类表'	id = Fields(type='int', primaryKey=True, autoIncrement=True, comment='ID')	name = Fields(type='varchar(50)', comment='分类名')	state = Fields(type='boolean', default='True', comment='数据存在状态')	cdate = Fields(type='int', default='time', comment='创建时间')
 |