PageRenderTime 56ms CodeModel.GetById 30ms RepoModel.GetById 1ms app.codeStats 0ms

/module/Provisioning/src/Provisioning/Model/AdditionLine.php

https://gitlab.com/jeann2015/nexus
PHP | 262 lines | 187 code | 65 blank | 10 comment | 0 complexity | 0225ea285a2bcad594d74d922502b5a8 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\AdditionLineInputFilter;
  9. /**
  10. * Description of Group
  11. *
  12. * @author rodolfo
  13. */
  14. class AdditionLine extends AdditionLineInputFilter {
  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 $limituser;
  27. public $lastname;
  28. public $firtsname;
  29. public $callinglastname;
  30. public $callingfirstname;
  31. public $clave;
  32. public $number;
  33. public $devicelevel;
  34. public $devicename;
  35. public $lineport;
  36. public $groupname;
  37. public $groupnamenew;
  38. public $userid1;
  39. public $userid2;
  40. public $id_product;
  41. public function getid_product() {
  42. return $this->id_product;
  43. }
  44. public function setid_product($id_product) {
  45. $this->id_product = $id_product;
  46. }
  47. public function getuserid1() {
  48. return $this->userid1;
  49. }
  50. public function setuserid1($userid1) {
  51. $this->userid1 = $userid1;
  52. }
  53. public function getuserid2() {
  54. return $this->userid2;
  55. }
  56. public function setuserid2($userid2) {
  57. $this->userid2 = $userid2;
  58. }
  59. public function getgroupnamenew() {
  60. return $this->groupnamenew;
  61. }
  62. public function setgroupnamenew($groupnamenew) {
  63. $this->groupnamenew = $groupnamenew;
  64. }
  65. public function getgroupname() {
  66. return $this->groupname;
  67. }
  68. public function setgroupname($groupname) {
  69. $this->groupname = $groupname;
  70. }
  71. public function getlineport() {
  72. return $this->lineport;
  73. }
  74. public function setlineport($lineport) {
  75. $this->lineport = $lineport;
  76. }
  77. public function getdevicename() {
  78. return $this->devicename;
  79. }
  80. public function setdevicename($devicename) {
  81. $this->devicename = $devicename;
  82. }
  83. public function getdevicelevel() {
  84. return $this->devicelevel;
  85. }
  86. public function setdevicelevel($devicelevel) {
  87. $this->devicelevel = $devicelevel;
  88. }
  89. public function getnumber() {
  90. return $this->number;
  91. }
  92. public function setnumber($number) {
  93. $this->number = $number;
  94. }
  95. public function getclave() {
  96. return $this->clave;
  97. }
  98. public function setclave($clave) {
  99. $this->clave = $clave;
  100. }
  101. public function getcallingfirstname() {
  102. return $this->callingfirstname;
  103. }
  104. public function setcallingfirstname($callingfirstname) {
  105. $this->callingfirstname = $callingfirstname;
  106. }
  107. public function getcallinglastname() {
  108. return $this->callinglastname;
  109. }
  110. public function setcallinglastname($callinglastname) {
  111. $this->callinglastname = $callinglastname;
  112. }
  113. public function getfirstname() {
  114. return $this->firtsname;
  115. }
  116. public function setfirstname($firtsname) {
  117. $this->firtsname = $firtsname;
  118. }
  119. public function getlastname() {
  120. return $this->lastname;
  121. }
  122. public function setlastname($lastname) {
  123. $this->lastname = $lastname;
  124. }
  125. public function gettype() {
  126. return $this->type;
  127. }
  128. public function settype($type) {
  129. $this->type = $type;
  130. }
  131. public function getid_order() {
  132. return $this->id_order;
  133. }
  134. public function setid_order($id_order) {
  135. $this->id_order = $id_order;
  136. }
  137. public function getid_group() {
  138. return $this->id_group;
  139. }
  140. public function setid_group($id_group) {
  141. $this->id_group = $id_group;
  142. }
  143. public function getid_service_provider() {
  144. return $this->id_service_provider;
  145. }
  146. public function setid_service_provider($id_service_provider) {
  147. $this->id_service_provider = $id_service_provider;
  148. }
  149. public function getcommand() {
  150. return $this->command;
  151. }
  152. public function setcommand($command) {
  153. $this->command = $command;
  154. }
  155. public function getid_user() {
  156. return $this->id_user;
  157. }
  158. public function setid_user($id_user) {
  159. $this->id_user = $id_user;
  160. }
  161. public function getname() {
  162. return $this->name;
  163. }
  164. public function setname($name) {
  165. $this->name = $name;
  166. }
  167. public function getcreatedate() {
  168. return $this->createdate;
  169. }
  170. public function setcreatedate($createdate) {
  171. $this->createdate = $createdate;
  172. }
  173. public function getcontactname() {
  174. return $this->contactname;
  175. }
  176. public function setcontactname($contactname) {
  177. $this->contactname = $contactname;
  178. }
  179. public function getcontactnumber() {
  180. return $this->contactnumber;
  181. }
  182. public function setcontactnumber($contactnumber) {
  183. $this->contactnumber = $contactnumber;
  184. }
  185. public function gettimezone() {
  186. return $this->timezone;
  187. }
  188. public function settimezone($timezone) {
  189. $this->timezone = $timezone;
  190. }
  191. public function getlimituser() {
  192. return $this->limituser;
  193. }
  194. public function setlimituser($limituser) {
  195. $this->limituser = $limituser;
  196. }
  197. }