08 2022 档案
摘要:from django.db import models # Create your models here. class DictConfig(models.Model): """ 字典表 """ id = models.AutoField(primary_key=True) dictype= m
阅读全文
摘要:原代码: class DictConfig(models.Model): """ 字典表 """ id = models.AutoField(primary_key=True) dictype= models.CharField("类型", max_length=30, unique=True) d
阅读全文