web_menu.py 603 B

123456789101112131415161718
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. demeter database
  5. name:web_menu.py
  6. author:rabin
  7. """
  8. from __load__ import *
  9. class Web_menu(Model):
  10. __table__ = 'web_menu'
  11. __comment__ = '菜单表'
  12. id = Fields(type='int', primaryKey=True, autoIncrement=True, comment='ID')
  13. name = Fields(type='varchar(255)', comment='菜单名')
  14. link = Fields(type='varchar(500)', comment='菜单链接')
  15. reorder = Fields(type='int', comment='菜单排序')
  16. state = Fields(type='boolean', default='True', comment='数据存在状态')
  17. cdate = Fields(type='int', default='time', comment='创建时间')