You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
501 B
22 lines
501 B
6 months ago
|
# coding:utf-8
|
||
|
__author__ = "ila"
|
||
|
|
||
|
from django.db import models
|
||
|
|
||
|
from .model import BaseModel
|
||
|
|
||
|
|
||
|
class config(BaseModel):
|
||
|
# id=models.BigIntegerField(verbose_name="自增id")
|
||
|
name = models.CharField(max_length=100, verbose_name=u'键名')
|
||
|
value = models.CharField(max_length=100, verbose_name=u'键值')
|
||
|
|
||
|
__tablename__ = 'config'
|
||
|
|
||
|
class Meta:
|
||
|
db_table = 'config'
|
||
|
verbose_name = verbose_name_plural = u'配置表'
|
||
|
|
||
|
# def __str__(self):
|
||
|
# return self.name
|