first commit

This commit is contained in:
2025-11-12 10:57:01 +08:00
commit 79b33e45dc
37 changed files with 416 additions and 0 deletions

10
myapp/models.py Normal file
View File

@@ -0,0 +1,10 @@
from django.db import models
# Create your models here.
class User(models.Model):
name = models.CharField(max_length=100)
city = models.CharField(max_length=100)
sex = models.CharField(max_length=100)
age = models.IntegerField()