Actualizacion proyecto- Actualizacion VPW y entidad

parent 7327d608
......@@ -72,37 +72,108 @@ class PluLista
/**
* @var int|null
*
* @ORM\Column(name="lis_la", type="integer", nullable=true)
* @ORM\Column(name="lis_vpw_la", type="integer", nullable=true)
*/
private $lisLa;
private $lisVpwLa;
/**
* @var string|null
*
* @ORM\Column(name="lis_medio", type="string", length=500, nullable=true)
* @ORM\Column(name="lis_vpw_medio", type="string", length=500, nullable=true)
*/
private $lisMedio;
private $lisVpwMedio;
/**
* @var string|null
*
* @ORM\Column(name="lis_provider", type="string", length=500, nullable=true)
* @ORM\Column(name="lis_vpw_provider", type="string", length=500, nullable=true)
*/
private $lisProvider;
private $lisVpwProvider;
/**
* @var string|null
*
* @ORM\Column(name="lis_service", type="string", length=500, nullable=true)
* @ORM\Column(name="lis_vpw_service", type="string", length=500, nullable=true)
*/
private $lisService;
private $lisVpwService;
/**
* @var string|null
*
* @ORM\Column(name="lis_code", type="string", length=500, nullable=true)
* @ORM\Column(name="lis_vpw_code", type="string", length=500, nullable=true)
*/
private $lisCode;
private $lisVpwCode;
/**/
/**
* @var string|null
*
* @ORM\Column(name="lis_wap_push_type", type="string", length=45, nullable=true)
*/
private $lisWapPushType;
/**
* @var string|null
*
* @ORM\Column(name="lis_wap_push_la", type="string", length=45, nullable=true)
*/
private $lisWapPushLa;
/**
* @var string|null
*
* @ORM\Column(name="lis_wap_push_service", type="string", length=45, nullable=true)
*/
private $lisWapPushService;
/**
* @var string|null
*
* @ORM\Column(name="lis_wap_push_code", type="string", length=45, nullable=true)
*/
private $lisWapPushCode;
/**
* @var string|null
*
* @ORM\Column(name="lis_wap_push_provider", type="string", length=45, nullable=true)
*/
private $lisWapPushProvider;
/**
* @var string|null
*
* @ORM\Column(name="lis_wap_push_provider_code", type="string", length=45, nullable=true)
*/
private $lisWapPushProviderCode;
/**
* @var string|null
*
* @ORM\Column(name="lis_wap_push_content_type", type="string", length=45, nullable=true)
*/
private $lisWapPushContentType;
/**
* @var string|null
*
* @ORM\Column(name="lis_wap_push_message", type="string", length=200, nullable=true)
*/
private $lisWapPushMessage;
/**
* @var string|null
*
* @ORM\Column(name="lis_wap_push_url", type="string", length=200, nullable=true)
*/
private $lisWapPushUrl;
/**
* @var string|null
*
* @ORM\Column(name="lis_wap_push_service_tag", type="string", length=45, nullable=true)
*/
private $lisWapPushServiceTag;
/**
* @var int|null
......@@ -403,74 +474,194 @@ class PluLista
return $this;
}
public function getLisLa(): ?int
public function getTag(): ?PluTag
{
return $this->lisLa;
return $this->tag;
}
public function setLisLa(?int $lisLa): self
public function setTag(?PluTag $tag): self
{
$this->lisLa = $lisLa;
$this->tag = $tag;
return $this;
}
public function getLisMedio(): ?string
public function getLisVpwLa(): ?int
{
return $this->lisMedio;
return $this->lisVpwLa;
}
public function setLisMedio(?string $lisMedio): self
public function setLisVpwLa(?int $lisVpwLa): self
{
$this->lisMedio = $lisMedio;
$this->lisVpwLa = $lisVpwLa;
return $this;
}
public function getLisProvider(): ?string
public function getLisVpwMedio(): ?string
{
return $this->lisProvider;
return $this->lisVpwMedio;
}
public function setLisProvider(?string $lisProvider): self
public function setLisVpwMedio(?string $lisVpwMedio): self
{
$this->lisProvider = $lisProvider;
$this->lisVpwMedio = $lisVpwMedio;
return $this;
}
public function getLisService(): ?string
public function getLisVpwProvider(): ?string
{
return $this->lisService;
return $this->lisVpwProvider;
}
public function setLisService(?string $lisService): self
public function setLisVpwProvider(?string $lisVpwProvider): self
{
$this->lisService = $lisService;
$this->lisVpwProvider = $lisVpwProvider;
return $this;
}
public function getLisCode(): ?string
public function getLisVpwService(): ?string
{
return $this->lisCode;
return $this->lisVpwService;
}
public function setLisCode(?string $lisCode): self
public function setLisVpwService(?string $lisVpwService): self
{
$this->lisCode = $lisCode;
$this->lisVpwService = $lisVpwService;
return $this;
}
public function getTag(): ?PluTag
public function getLisVpwCode(): ?string
{
return $this->tag;
return $this->lisVpwCode;
}
public function setTag(?PluTag $tag): self
public function setLisVpwCode(?string $lisVpwCode): self
{
$this->tag = $tag;
$this->lisVpwCode = $lisVpwCode;
return $this;
}
public function getLisWapPushType(): ?string
{
return $this->lisWapPushType;
}
public function setLisWapPushType(?string $lisWapPushType): self
{
$this->lisWapPushType = $lisWapPushType;
return $this;
}
public function getLisWapPushLa(): ?string
{
return $this->lisWapPushLa;
}
public function setLisWapPushLa(?string $lisWapPushLa): self
{
$this->lisWapPushLa = $lisWapPushLa;
return $this;
}
public function getLisWapPushService(): ?string
{
return $this->lisWapPushService;
}
public function setLisWapPushService(?string $lisWapPushService): self
{
$this->lisWapPushService = $lisWapPushService;
return $this;
}
public function getLisWapPushCode(): ?string
{
return $this->lisWapPushCode;
}
public function setLisWapPushCode(?string $lisWapPushCode): self
{
$this->lisWapPushCode = $lisWapPushCode;
return $this;
}
public function getLisWapPushProvider(): ?string
{
return $this->lisWapPushProvider;
}
public function setLisWapPushProvider(?string $lisWapPushProvider): self
{
$this->lisWapPushProvider = $lisWapPushProvider;
return $this;
}
public function getLisWapPushProviderCode(): ?string
{
return $this->lisWapPushProviderCode;
}
public function setLisWapPushProviderCode(?string $lisWapPushProviderCode): self
{
$this->lisWapPushProviderCode = $lisWapPushProviderCode;
return $this;
}
public function getLisWapPushContentType(): ?string
{
return $this->lisWapPushContentType;
}
public function setLisWapPushContentType(?string $lisWapPushContentType): self
{
$this->lisWapPushContentType = $lisWapPushContentType;
return $this;
}
public function getLisWapPushMessage(): ?string
{
return $this->lisWapPushMessage;
}
public function setLisWapPushMessage(?string $lisWapPushMessage): self
{
$this->lisWapPushMessage = $lisWapPushMessage;
return $this;
}
public function getLisWapPushUrl(): ?string
{
return $this->lisWapPushUrl;
}
public function setLisWapPushUrl(?string $lisWapPushUrl): self
{
$this->lisWapPushUrl = $lisWapPushUrl;
return $this;
}
public function getLisWapPushServiceTag(): ?string
{
return $this->lisWapPushServiceTag;
}
public function setLisWapPushServiceTag(?string $lisWapPushServiceTag): self
{
$this->lisWapPushServiceTag = $lisWapPushServiceTag;
return $this;
}
......
......@@ -37,11 +37,11 @@ class EntelVPW {
$log->debug('msisdn:' . $msisdn . ' | susripcion:' . $suscripcion->getSusId());
$params = array(
'la' => $lista->getLisLa(),
'medio' => $lista->getLisMedio(),
'provider' => $lista->getLisProvider(),
'service' => $lista->getLisService(),
'code' => $lista->getLisCode()
'la' => $lista->getLisVpwLa(),
'medio' => $lista->getLisVpwMedio(),
'provider' => $lista->getLisVpwProvider(),
'service' => $lista->getLisVpwService(),
'code' => $lista->getLisVpwCode()
);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment