signature.py 457 B

1234567891011121314
  1. # -*- coding: utf-8 -*-
  2. """
  3. demeter database
  4. name:signature.py
  5. """
  6. from .__load__ import *
  7. class Signature(Model):
  8. __table__ = 'signature'
  9. __comment__ = 'signature记录表'
  10. id = Fields(type='int', primaryKey=True, autoIncrement=True, comment='ID')
  11. site_id = Fields(type='int', comment='所属站点')
  12. signature = Fields(type='varchar(500)', comment='signature')
  13. cdate = Fields(type='int', default='time', comment='创建时间')