manage_admin.py 729 B

12345678910111213141516171819
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. demeter database
  5. name:manage_admin.py
  6. author:rabin
  7. """
  8. from __load__ import *
  9. class Manage_admin(Model):
  10. __table__ = 'manage_admin'
  11. __comment__ = '超级管理员'
  12. id = Fields(type='int', primaryKey=True, autoIncrement=True, comment='管理员ID')
  13. role_id = Fields(type='int', comment='角色ID')
  14. username = Fields(type='varchar(50)', comment='管理员账号')
  15. mobile = Fields(type='bigint', comment='园区管理员手机号', unique=True)
  16. password = Fields(type='varchar(38)', comment='安全密码', md5=True)
  17. state = Fields(type='boolean', default='True', comment='数据存在状态')
  18. cdate = Fields(type='int', default='time', comment='创建时间')