PageRenderTime 51ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/module/Provisioning/src/Provisioning/Model/DeleteLine.php

https://gitlab.com/jeann2015/nexus
PHP | 182 lines | 124 code | 48 blank | 10 comment | 0 complexity | 261299977f791f23c3a51fd1e2db7355 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. namespace Provisioning\Model;
  8. use Provisioning\InputFilter\DeleteLineInputFilter;
  9. /**
  10. * Description of Group
  11. *
  12. * @author rodolfo
  13. */
  14. class DeleteLine extends DeleteLineInputFilter {
  15. public $type;
  16. public $id_order;
  17. public $id_group;
  18. public $id_service_provider;
  19. public $command;
  20. public $id_user;
  21. public $name;
  22. public $createdate;
  23. public $contactname;
  24. public $contactnumber;
  25. public $timezone;
  26. public $userlimit;
  27. public $groupname;
  28. public $callinglineidname;
  29. public $number_grupo;
  30. public $number_empresa;
  31. public $domain;
  32. public function getcontactnumber() {
  33. return $this->contactnumber;
  34. }
  35. public function setcontactnumber($contactnumber) {
  36. $this->contactnumber = $contactnumber;
  37. }
  38. public function getdomain() {
  39. return $this->domain;
  40. }
  41. public function setdomain($domain) {
  42. $this->domain = $domain;
  43. }
  44. public function getnumber_empresa() {
  45. return $this->number_empresa;
  46. }
  47. public function setnumber_empresa($number_empresa) {
  48. $this->number_empresa = $number_empresa;
  49. }
  50. public function getgroupname() {
  51. return $this->groupname;
  52. }
  53. public function setgroupname($groupname) {
  54. $this->groupname = $groupname;
  55. }
  56. public function getcontactname() {
  57. return $this->contactname;
  58. }
  59. public function setcontactname($contactname) {
  60. $this->contactname = $contactname;
  61. }
  62. public function setcallinglineidname() {
  63. return $this->callinglineidname;
  64. }
  65. public function setsetcallinglineidname($callinglineidname) {
  66. $this->callinglineidname = $callinglineidname;
  67. }
  68. public function gettype() {
  69. return $this->type;
  70. }
  71. public function settype($type) {
  72. $this->type = $type;
  73. }
  74. public function getid_order() {
  75. return $this->id_order;
  76. }
  77. public function setid_order($id_order) {
  78. $this->id_order = $id_order;
  79. }
  80. public function getid_group() {
  81. return $this->id_group;
  82. }
  83. public function setid_group($id_group) {
  84. $this->id_group = $id_group;
  85. }
  86. public function getid_service_provider() {
  87. return $this->id_service_provider;
  88. }
  89. public function setid_service_provider($id_service_provider) {
  90. $this->id_service_provider = $id_service_provider;
  91. }
  92. public function getcommand() {
  93. return $this->command;
  94. }
  95. public function setcommand($command) {
  96. $this->command = $command;
  97. }
  98. public function getid_user() {
  99. return $this->id_user;
  100. }
  101. public function setid_user($id_user) {
  102. $this->id_user = $id_user;
  103. }
  104. public function getname() {
  105. return $this->name;
  106. }
  107. public function setname($name) {
  108. $this->name = $name;
  109. }
  110. public function getcreatedate() {
  111. return $this->createdate;
  112. }
  113. public function setcreatedate($createdate) {
  114. $this->createdate = $createdate;
  115. }
  116. public function getnumber_grupo() {
  117. return $this->number_grupo;
  118. }
  119. public function setnumber_grupo($number_grupo) {
  120. $this->number_grupo = $number_grupo;
  121. }
  122. public function gettimezone() {
  123. return $this->timezone;
  124. }
  125. public function settimezone($timezone) {
  126. $this->timezone = $timezone;
  127. }
  128. public function getuserlimit() {
  129. return $this->userlimit;
  130. }
  131. public function setuserlimit($userlimit) {
  132. $this->userlimit = $userlimit;
  133. }
  134. }