This commit is contained in:
Francisco Rodriguez
2022-11-26 19:31:42 -07:00
parent db865ef49c
commit 77d2b02a92
9 changed files with 343 additions and 17 deletions

View File

@@ -1,3 +1,11 @@
from django.db import models
# Create your models here.
class Timbres(models.Model):
uuid = models.CharField(max_length=36, unique=True)
rfcc = models.CharField(max_length=13)
rfcp = models.CharField(max_length=13)
fecha = models.CharField(max_length=55)
folio = models.CharField(max_length=55)
serie = models.CharField(max_length=10)
tipo = models.CharField(max_length=35)