| 123456789101112 | # -*- coding: utf-8 -*-from .__load__ import *class Extract_content(Model):    __table__ = 'extract_content'    __comment__ = 'pdf内容'    id = Fields(type='int', primaryKey=True, autoIncrement=True, comment='ID')    extract_id = Fields(type='int', comment='文件id')    method = Fields(type='tinyint(1)', comment='方法')    content = Fields(type='text(255)', comment='内容')    state = Fields(type='boolean', default='True', comment='数据存在状态')    cdate = Fields(type='int', default='time', comment='创建时间')
 |