Sistema de Apoio ao Processo Legislativo
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.

23 lines
984 B

from django.db import models
class LexmlRegistroProvedor(models.Model):
id_provedor = models.IntegerField()
nome_provedor = models.CharField(max_length=255)
sigla_provedor = models.CharField(max_length=15)
adm_email = models.CharField(max_length=50, blank=True, null=True)
nome_responsavel = models.CharField(max_length=255, blank=True, null=True)
tipo = models.CharField(max_length=50)
id_responsavel = models.IntegerField(blank=True, null=True)
xml_provedor = models.TextField(blank=True, null=True)
class LexmlRegistroPublicador(models.Model):
id_publicador = models.IntegerField()
nome_publicador = models.CharField(max_length=255)
adm_email = models.CharField(max_length=50, blank=True, null=True)
sigla = models.CharField(max_length=255, blank=True, null=True)
nome_responsavel = models.CharField(max_length=255, blank=True, null=True)
tipo = models.CharField(max_length=50)
id_responsavel = models.IntegerField()