container.py 581 B

12345678910111213141516
  1. # -*- coding: utf-8 -*-
  2. """
  3. demeter database
  4. name:container.py 容器表
  5. """
  6. from .__load__ import *
  7. class Container(Model):
  8. __table__ = 'container'
  9. __comment__ = '容器表'
  10. id = Fields(type='int', primaryKey=True, autoIncrement=True, comment='ID')
  11. group_id = Fields(type='int', comment='组id')
  12. images_id = Fields(type='int', comment='镜像id')
  13. name = Fields(type='varchar(60)', comment='容器名称')
  14. state = Fields(type='boolean', default='True', comment='数据存在状态')
  15. cdate = Fields(type='int', default='time', comment='创建时间')