12 lines
378 B
Python
12 lines
378 B
Python
from django.db import models
|
|
|
|
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)
|
|
|