site.py 741 B

12345678910111213141516
  1. # -*- coding: utf-8 -*-
  2. from .__load__ import *
  3. class Site(Model):
  4. __table__ = 'site'
  5. __comment__ = '站点主表'
  6. id = Fields(type='int', primaryKey=True, autoIncrement=True, comment='站点ID')
  7. name = Fields(type='varchar(50)', comment='站点名')
  8. link = Fields(type='varchar(200)', comment='站点网址')
  9. appid = Fields(type='varchar(150)', comment='appid')
  10. appsecret = Fields(type='varchar(300)', comment='appsecret')
  11. sdate = Fields(type='int', comment='开始时间')
  12. edate = Fields(type='int', comment='结束时间')
  13. api = Fields(type='varchar(2000)', comment='接口地址')
  14. state = Fields(type='boolean', default='True', comment='数据存在状态')
  15. cdate = Fields(type='int', default='time', comment='创建时间')