赞
踩
【models】
from django.db import models # Create your models here. ############ 用户登陆与认证 ######################################################### class UserInfo(models.Model): user_type_choices=( (1,'普通用户'), (2,'VIP'), (3,'SVIP'), ) usertype=models.IntegerField(choices=user_type_choices) username=models.CharField(max_length=20) password=models.CharField(max_length=32) class Meta: managed=True
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。