src/Entity/Students.php line 29

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Symfony\Component\Security\Core\User\UserInterface;
  8. /**
  9. * Students
  10. */
  11. #[ORM\Table(name: 'students')]
  12. #[ORM\Index(name: 'advisor', columns: ['advisor'])]
  13. #[ORM\Index(name: 'college', columns: ['college'])]
  14. #[ORM\Index(name: 'firstName', columns: ['firstName'])]
  15. #[ORM\Index(name: 'highSchool1', columns: ['highSchool1'])]
  16. #[ORM\Index(name: 'highSchool2', columns: ['highSchool2'])]
  17. #[ORM\Index(name: 'lastName', columns: ['lastName', 'firstName'])]
  18. #[ORM\Index(name: 'maidenName', columns: ['maidenName'])]
  19. #[ORM\Index(name: 'school', columns: ['school'])]
  20. #[ORM\Index(name: 'ssn', columns: ['ssn'])]
  21. #[ORM\UniqueConstraint(name: 'commenceAccountKey', columns: ['commenceAccountKey'])]
  22. #[ORM\UniqueConstraint(name: 'jseId', columns: ['jseId'])]
  23. #[ORM\UniqueConstraint(name: 'ssn_dob', columns: ['ssn', 'dob'])]
  24. #[ORM\UniqueConstraint(name: 'ttiStudentId', columns: ['ttiStudentId'])]
  25. #[ORM\Entity(repositoryClass: 'App\Repository\StudentsRepository')]
  26. class Students implements UserInterface
  27. {
  28. /**
  29. * @var int
  30. */
  31. #[ORM\Column(name: 'id', type: 'integer', nullable: false)]
  32. #[ORM\Id]
  33. #[ORM\GeneratedValue(strategy: 'IDENTITY')]
  34. private $id;
  35. /**
  36. * @var string|null
  37. */
  38. #[ORM\Column(name: 'firstName', type: 'string', length: 40, nullable: true)]
  39. private $firstname;
  40. /**
  41. * @var string|null
  42. */
  43. #[ORM\Column(name: 'lastName', type: 'string', length: 40, nullable: true)]
  44. private $lastname;
  45. /**
  46. * @var int|null
  47. */
  48. #[ORM\Column(name: 'similarName', type: 'integer', nullable: true)]
  49. private $similarname;
  50. /**
  51. * @var string|null
  52. */
  53. #[ORM\Column(name: 'maidenName', type: 'string', length: 40, nullable: true)]
  54. private $maidenname;
  55. /**
  56. * @var int|null
  57. */
  58. #[ORM\Column(name: 'gender', type: 'integer', nullable: true)]
  59. private $gender;
  60. /**
  61. * @var int|null
  62. */
  63. #[ORM\Column(name: 'membershipType', type: 'integer', nullable: true)]
  64. private $membershiptype;
  65. /**
  66. * @var int|null
  67. */
  68. #[ORM\Column(name: 'advisor', type: 'integer', nullable: true)]
  69. private $advisor;
  70. /**
  71. * @var int|null
  72. */
  73. #[ORM\Column(name: 'school', type: 'integer', nullable: true)]
  74. private $school;
  75. /**
  76. * @var int|null
  77. */
  78. #[ORM\Column(name: 'college', type: 'integer', nullable: true)]
  79. private $college;
  80. /**
  81. * @var bool|null
  82. */
  83. #[ORM\Column(name: 'completeCollegeUpdate', type: 'boolean', nullable: true)]
  84. private $completecollegeupdate;
  85. /**
  86. * @var int|null
  87. */
  88. #[ORM\Column(name: 'highSchool1', type: 'integer', nullable: true)]
  89. private $highschool1;
  90. /**
  91. * @var int|null
  92. */
  93. #[ORM\Column(name: 'highSchool2', type: 'integer', nullable: true)]
  94. private $highschool2;
  95. /**
  96. * @var int|null
  97. */
  98. #[ORM\Column(name: 'seminary', type: 'integer', nullable: true)]
  99. private $seminary;
  100. /**
  101. * @var \DateTime|null
  102. */
  103. #[ORM\Column(name: 'dob', type: 'date', nullable: true)]
  104. private $dob;
  105. /**
  106. * @var string|null
  107. */
  108. #[ORM\Column(name: 'ssn', type: 'string', length: 20, nullable: true)]
  109. private $ssn;
  110. /**
  111. * @var string|null
  112. */
  113. #[ORM\Column(name: 'jseId', type: 'string', length: 20, nullable: true)]
  114. private $jseid;
  115. /**
  116. * @var string|null
  117. */
  118. #[ORM\Column(name: 'cimId', type: 'string', length: 20, nullable: true)]
  119. private $cimid;
  120. /**
  121. * @var string|null
  122. */
  123. #[ORM\Column(name: 'email', type: 'string', length: 100, nullable: true)]
  124. private $email;
  125. /**
  126. * @var string|null
  127. */
  128. #[ORM\Column(name: 'address', type: 'text', length: 65535, nullable: true)]
  129. private $address;
  130. /**
  131. * @var string|null
  132. */
  133. #[ORM\Column(name: 'city', type: 'string', length: 40, nullable: true)]
  134. private $city;
  135. /**
  136. * @var string|null
  137. */
  138. #[ORM\Column(name: 'state', type: 'string', length: 20, nullable: true)]
  139. private $state;
  140. /**
  141. * @var string|null
  142. */
  143. #[ORM\Column(name: 'zip', type: 'string', length: 12, nullable: true)]
  144. private $zip;
  145. /**
  146. * @var string|null
  147. */
  148. #[ORM\Column(name: 'country', type: 'string', length: 20, nullable: true)]
  149. private $country;
  150. /**
  151. * @var string|null
  152. */
  153. #[ORM\Column(name: 'phone', type: 'string', length: 20, nullable: true)]
  154. private $phone;
  155. /**
  156. * @var string|null
  157. */
  158. #[ORM\Column(name: 'phone2', type: 'string', length: 20, nullable: true)]
  159. private $phone2;
  160. /**
  161. * @var string|null
  162. */
  163. /**
  164. * @var string|null
  165. */
  166. #[ORM\Column(name: 'alert', type: 'string', length: 255, nullable: true)]
  167. private $alert;
  168. /**
  169. * @var string|null
  170. */
  171. #[ORM\Column(name: 'commenceNotes', type: 'string', length: 255, nullable: true)]
  172. private $commencenotes;
  173. /**
  174. * @var string|null
  175. */
  176. #[ORM\Column(name: 'commenceAccountKey', type: 'string', length: 255, nullable: true)]
  177. private $commenceaccountkey;
  178. /**
  179. * @var \DateTime|null
  180. */
  181. #[ORM\Column(name: 'adminErrorDate', type: 'date', nullable: true)]
  182. private $adminerrordate;
  183. /**
  184. * @var int|null
  185. */
  186. #[ORM\Column(name: 'financialAid', type: 'integer', nullable: true)]
  187. private $financialaid;
  188. /**
  189. * @var int|null
  190. */
  191. #[ORM\Column(name: 'noTranscript', type: 'integer', nullable: true)]
  192. private $notranscript;
  193. /**
  194. * @var string|null
  195. */
  196. #[ORM\Column(name: 'accommodations', type: 'string', length: 255, nullable: true)]
  197. private $accommodations;
  198. /**
  199. * @var int|null
  200. */
  201. #[ORM\Column(name: 'accommodationsApproved', type: 'integer', nullable: true)]
  202. private $accommodationsapproved;
  203. /**
  204. * @var string|null
  205. */
  206. #[ORM\Column(name: 'approvedBy', type: 'string', length: 255, nullable: true)]
  207. private $approvedby;
  208. /**
  209. * @var \DateTime|null
  210. */
  211. #[ORM\Column(name: 'approvalDate', type: 'date', nullable: true)]
  212. private $approvaldate;
  213. /**
  214. * @var int|null
  215. */
  216. #[ORM\Column(name: 'disAllowed', type: 'integer', nullable: true)]
  217. private $disallowed;
  218. /**
  219. * @var string|null
  220. */
  221. #[ORM\Column(name: 'disAllowedComment', type: 'string', length: 255, nullable: true)]
  222. private $disallowedcomment;
  223. /**
  224. * @var int|null
  225. */
  226. #[ORM\Column(name: 'isIsraelStudent', type: 'integer', nullable: true)]
  227. private $isisraelstudent;
  228. /**
  229. * @var string|null
  230. */
  231. #[ORM\Column(name: 'israelAddress', type: 'string', length: 255, nullable: true)]
  232. private $israeladdress;
  233. /**
  234. * @var string|null
  235. */
  236. #[ORM\Column(name: 'isapYear', type: 'string', length: 4, nullable: true)]
  237. private $isapyear;
  238. /**
  239. * @var int|null
  240. */
  241. #[ORM\Column(name: 'ttiStudentId', type: 'integer', nullable: true)]
  242. private $ttistudentid;
  243. /**
  244. * @var \DateTime|null
  245. */
  246. #[ORM\Column(name: 'createdOn', type: 'date', nullable: true)]
  247. private $createdon;
  248. /**
  249. * @var \DateTime|null
  250. */
  251. #[ORM\Column(name: 'lastChange', type: 'date', nullable: true)]
  252. private $lastchange;
  253. /**
  254. * @var string|null
  255. */
  256. #[ORM\Column(name: 'createdBy', type: 'string', length: 100, nullable: true)]
  257. private $createdby;
  258. /**
  259. * @var string|null
  260. */
  261. #[ORM\Column(name: 'lastChangeBy', type: 'string', length: 100, nullable: true)]
  262. private $lastchangeby;
  263. #[ORM\OneToMany(targetEntity: PckPackages::class, mappedBy: 'Student')]
  264. private $pckPackages;
  265. #[ORM\Column(type: 'string', length: 255, nullable: true)]
  266. private $password;
  267. #[ORM\Column(type: 'json', nullable: true)]
  268. private $Roles = [];
  269. #[ORM\Column(type: 'string', length: 255, nullable: true)]
  270. private $talGuid;
  271. #[ORM\Column(type: 'integer', nullable: true)]
  272. private $school_cohort;
  273. #[ORM\Column(nullable: true)]
  274. private ?int $cccId = null;
  275. #[ORM\Column(type: Types::SMALLINT)]
  276. private ?int $sameDobSsnCounter = null;
  277. #[ORM\Column(length: 20, nullable: true)]
  278. private ?string $phone3 = null;
  279. #[ORM\Column(length: 20, nullable: true)]
  280. private ?string $phone4 = null;
  281. #[ORM\Column(name: 'ccc_id_pending', type: 'datetime', nullable: true)]
  282. private $cccIdPending = null;
  283. #[ORM\Column(type: 'date',nullable: true)]
  284. private $authnet_profile_updated = null;
  285. #[ORM\Column(nullable: true)]
  286. private ?int $maspedStudentId = null;
  287. public function __construct()
  288. {
  289. $this->pckPackages = new ArrayCollection();
  290. }
  291. public function getId(): ?int
  292. {
  293. return $this->id;
  294. }
  295. public function getFirstname(): ?string
  296. {
  297. return $this->firstname;
  298. }
  299. public function setFirstname(?string $firstname): self
  300. {
  301. $this->firstname = $firstname;
  302. return $this;
  303. }
  304. public function getLastname(): ?string
  305. {
  306. return $this->lastname;
  307. }
  308. public function setLastname(?string $lastname): self
  309. {
  310. $this->lastname = $lastname;
  311. return $this;
  312. }
  313. public function getSimilarname(): ?int
  314. {
  315. return $this->similarname;
  316. }
  317. public function setSimilarname(?int $similarname): self
  318. {
  319. $this->similarname = $similarname;
  320. return $this;
  321. }
  322. public function getMaidenname(): ?string
  323. {
  324. return $this->maidenname;
  325. }
  326. public function setMaidenname(?string $maidenname): self
  327. {
  328. $this->maidenname = $maidenname;
  329. return $this;
  330. }
  331. public function getGender(): ?int
  332. {
  333. return $this->gender;
  334. }
  335. public function setGender(?int $gender): self
  336. {
  337. $this->gender = $gender;
  338. return $this;
  339. }
  340. public function getMembershiptype(): ?int
  341. {
  342. return $this->membershiptype;
  343. }
  344. public function setMembershiptype(?int $membershiptype): self
  345. {
  346. $this->membershiptype = $membershiptype;
  347. return $this;
  348. }
  349. public function getAdvisor(): ?int
  350. {
  351. return $this->advisor;
  352. }
  353. public function setAdvisor(?int $advisor): self
  354. {
  355. $this->advisor = $advisor;
  356. return $this;
  357. }
  358. public function getSchool(): ?int
  359. {
  360. return $this->school;
  361. }
  362. public function setSchool(?int $school): self
  363. {
  364. $this->school = $school;
  365. return $this;
  366. }
  367. public function getCollege(): ?int
  368. {
  369. return $this->college;
  370. }
  371. public function setCollege(?int $college): self
  372. {
  373. $this->college = $college;
  374. return $this;
  375. }
  376. public function getCompletecollegeupdate(): ?bool
  377. {
  378. return $this->completecollegeupdate;
  379. }
  380. public function setCompletecollegeupdate(?bool $completecollegeupdate): self
  381. {
  382. $this->completecollegeupdate = $completecollegeupdate;
  383. return $this;
  384. }
  385. public function getHighschool1(): ?int
  386. {
  387. return $this->highschool1;
  388. }
  389. public function setHighschool1(?int $highschool1): self
  390. {
  391. $this->highschool1 = $highschool1;
  392. return $this;
  393. }
  394. public function getHighschool2(): ?int
  395. {
  396. return $this->highschool2;
  397. }
  398. public function setHighschool2(?int $highschool2): self
  399. {
  400. $this->highschool2 = $highschool2;
  401. return $this;
  402. }
  403. public function getSeminary(): ?int
  404. {
  405. return $this->seminary;
  406. }
  407. public function setSeminary(?int $seminary): self
  408. {
  409. $this->seminary = $seminary;
  410. return $this;
  411. }
  412. public function getDob(): ?\DateTimeInterface
  413. {
  414. return $this->dob;
  415. }
  416. public function setDob(?\DateTimeInterface $dob): self
  417. {
  418. $this->dob = $dob;
  419. return $this;
  420. }
  421. public function getSsn(): ?string
  422. {
  423. return $this->ssn;
  424. }
  425. public function setSsn(?string $ssn): self
  426. {
  427. $this->ssn = $ssn;
  428. return $this;
  429. }
  430. public function getJseid(): ?string
  431. {
  432. return $this->jseid;
  433. }
  434. public function setJseid(?string $jseid): self
  435. {
  436. $this->jseid = $jseid;
  437. return $this;
  438. }
  439. public function getCimid(): ?string
  440. {
  441. return $this->cimid;
  442. }
  443. public function setCimid(?string $cimid): self
  444. {
  445. $this->cimid = $cimid;
  446. return $this;
  447. }
  448. public function getEmail(): ?string
  449. {
  450. return $this->email;
  451. }
  452. public function setEmail(?string $email): self
  453. {
  454. $this->email = $email;
  455. return $this;
  456. }
  457. public function getAddress(): ?string
  458. {
  459. return $this->address;
  460. }
  461. public function setAddress(?string $address): self
  462. {
  463. $this->address = $address;
  464. return $this;
  465. }
  466. public function getCity(): ?string
  467. {
  468. return $this->city;
  469. }
  470. public function setCity(?string $city): self
  471. {
  472. $this->city = $city;
  473. return $this;
  474. }
  475. public function getState(): ?string
  476. {
  477. return $this->state;
  478. }
  479. public function setState(?string $state): self
  480. {
  481. $this->state = $state;
  482. return $this;
  483. }
  484. public function getZip(): ?string
  485. {
  486. return $this->zip;
  487. }
  488. public function setZip(?string $zip): self
  489. {
  490. $this->zip = $zip;
  491. return $this;
  492. }
  493. public function getCountry(): ?string
  494. {
  495. return $this->country;
  496. }
  497. public function setCountry(?string $country): self
  498. {
  499. $this->country = $country;
  500. return $this;
  501. }
  502. public function getPhone(): ?string
  503. {
  504. return $this->phone;
  505. }
  506. public function setPhone(?string $phone): self
  507. {
  508. $this->phone = $phone;
  509. return $this;
  510. }
  511. public function getPhone2(): ?string
  512. {
  513. return $this->phone2;
  514. }
  515. public function setPhone2(?string $phone2): self
  516. {
  517. $this->phone2 = $phone2;
  518. return $this;
  519. }
  520. public function getAlert(): ?string
  521. {
  522. return $this->alert;
  523. }
  524. public function setAlert(?string $alert): self
  525. {
  526. $this->alert = $alert;
  527. return $this;
  528. }
  529. public function getCommencenotes(): ?string
  530. {
  531. return $this->commencenotes;
  532. }
  533. public function setCommencenotes(?string $commencenotes): self
  534. {
  535. $this->commencenotes = $commencenotes;
  536. return $this;
  537. }
  538. public function getCommenceaccountkey(): ?string
  539. {
  540. return $this->commenceaccountkey;
  541. }
  542. public function setCommenceaccountkey(?string $commenceaccountkey): self
  543. {
  544. $this->commenceaccountkey = $commenceaccountkey;
  545. return $this;
  546. }
  547. public function getAdminerrordate(): ?\DateTimeInterface
  548. {
  549. return $this->adminerrordate;
  550. }
  551. public function setAdminerrordate(?\DateTimeInterface $adminerrordate): self
  552. {
  553. $this->adminerrordate = $adminerrordate;
  554. return $this;
  555. }
  556. public function getFinancialaid(): ?int
  557. {
  558. return $this->financialaid;
  559. }
  560. public function setFinancialaid(?int $financialaid): self
  561. {
  562. $this->financialaid = $financialaid;
  563. return $this;
  564. }
  565. public function getNotranscript(): ?int
  566. {
  567. return $this->notranscript;
  568. }
  569. public function setNotranscript(?int $notranscript): self
  570. {
  571. $this->notranscript = $notranscript;
  572. return $this;
  573. }
  574. public function getAccommodations(): ?string
  575. {
  576. return $this->accommodations;
  577. }
  578. public function setAccommodations(?string $accommodations): self
  579. {
  580. $this->accommodations = $accommodations;
  581. return $this;
  582. }
  583. public function getAccommodationsapproved(): ?int
  584. {
  585. return $this->accommodationsapproved;
  586. }
  587. public function setAccommodationsapproved(?int $accommodationsapproved): self
  588. {
  589. $this->accommodationsapproved = $accommodationsapproved;
  590. return $this;
  591. }
  592. public function getApprovedby(): ?string
  593. {
  594. return $this->approvedby;
  595. }
  596. public function setApprovedby(?string $approvedby): self
  597. {
  598. $this->approvedby = $approvedby;
  599. return $this;
  600. }
  601. public function getApprovaldate(): ?\DateTimeInterface
  602. {
  603. return $this->approvaldate;
  604. }
  605. public function setApprovaldate(?\DateTimeInterface $approvaldate): self
  606. {
  607. $this->approvaldate = $approvaldate;
  608. return $this;
  609. }
  610. public function getDisallowed(): ?int
  611. {
  612. return $this->disallowed;
  613. }
  614. public function setDisallowed(?int $disallowed): self
  615. {
  616. $this->disallowed = $disallowed;
  617. return $this;
  618. }
  619. public function getDisallowedcomment(): ?string
  620. {
  621. return $this->disallowedcomment;
  622. }
  623. public function setDisallowedcomment(?string $disallowedcomment): self
  624. {
  625. $this->disallowedcomment = $disallowedcomment;
  626. return $this;
  627. }
  628. public function getIsisraelstudent(): ?int
  629. {
  630. return $this->isisraelstudent;
  631. }
  632. public function setIsisraelstudent(?int $isisraelstudent): self
  633. {
  634. $this->isisraelstudent = $isisraelstudent;
  635. return $this;
  636. }
  637. public function getIsraeladdress(): ?string
  638. {
  639. return $this->israeladdress;
  640. }
  641. public function setIsraeladdress(?string $israeladdress): self
  642. {
  643. $this->israeladdress = $israeladdress;
  644. return $this;
  645. }
  646. public function getIsapyear(): ?string
  647. {
  648. return $this->isapyear;
  649. }
  650. public function setIsapyear(?string $isapyear): self
  651. {
  652. $this->isapyear = $isapyear;
  653. return $this;
  654. }
  655. public function getTtistudentid(): ?int
  656. {
  657. return $this->ttistudentid;
  658. }
  659. public function setTtistudentid(?int $ttistudentid): self
  660. {
  661. $this->ttistudentid = $ttistudentid;
  662. return $this;
  663. }
  664. public function getCreatedon(): ?\DateTimeInterface
  665. {
  666. return $this->createdon;
  667. }
  668. public function setCreatedon(?\DateTimeInterface $createdon): self
  669. {
  670. $this->createdon = $createdon;
  671. return $this;
  672. }
  673. public function getLastchange(): ?\DateTimeInterface
  674. {
  675. return $this->lastchange;
  676. }
  677. public function setLastchange(?\DateTimeInterface $lastchange): self
  678. {
  679. $this->lastchange = $lastchange;
  680. return $this;
  681. }
  682. public function getCreatedby(): ?string
  683. {
  684. return $this->createdby;
  685. }
  686. public function setCreatedby(?string $createdby): self
  687. {
  688. $this->createdby = $createdby;
  689. return $this;
  690. }
  691. public function getLastchangeby(): ?string
  692. {
  693. return $this->lastchangeby;
  694. }
  695. public function setLastchangeby(?string $lastchangeby): self
  696. {
  697. $this->lastchangeby = $lastchangeby;
  698. return $this;
  699. }
  700. // /**
  701. // * @return Collection|PckPackages[]
  702. // */
  703. // public function getPckPackages(): Collection
  704. // {
  705. // return $this->pckPackages;
  706. // }
  707. //
  708. // public function addPckPackage(PckPackages $pckPackage): self
  709. // {
  710. // if (!$this->pckPackages->contains($pckPackage)) {
  711. // $this->pckPackages[] = $pckPackage;
  712. // $pckPackage->setStudent($this);
  713. // }
  714. //
  715. // return $this;
  716. // }
  717. //
  718. // public function removePckPackage(PckPackages $pckPackage): self
  719. // {
  720. // if ($this->pckPackages->removeElement($pckPackage)) {
  721. // // set the owning side to null (unless already changed)
  722. // if ($pckPackage->getStudent() === $this) {
  723. // $pckPackage->setStudent(null);
  724. // }
  725. // }
  726. //
  727. // return $this;
  728. // }
  729. public function getRoles()
  730. {
  731. return $this->Roles;
  732. }
  733. public function getPassword()
  734. {
  735. return $this->password;
  736. }
  737. public function getSalt()
  738. {
  739. // TODO: Implement getSalt() method.
  740. }
  741. public function getUsername()
  742. {
  743. return $this->getEmail();
  744. }
  745. public function getName()
  746. {
  747. return $this->getFirstname();
  748. }
  749. public function eraseCredentials()
  750. {
  751. // TODO: Implement eraseCredentials() method.
  752. }
  753. public function setPassword(string $password): self
  754. {
  755. $this->password = $password;
  756. return $this;
  757. }
  758. public function setRoles(?array $Roles): self
  759. {
  760. $this->Roles = $Roles;
  761. return $this;
  762. }
  763. public function getTalGuid(): ?string
  764. {
  765. return $this->talGuid;
  766. }
  767. public function setTalGuid(?string $talGuid): self
  768. {
  769. $this->talGuid = $talGuid;
  770. return $this;
  771. }
  772. /**
  773. * @return Collection|PckPackages[]
  774. */
  775. // public function getPckPackages(): Collection
  776. // {
  777. // return $this->pckPackages;
  778. // }
  779. //
  780. // public function addPckPackage(PckPackages $pckPackage): self
  781. // {
  782. // if (!$this->pckPackages->contains($pckPackage)) {
  783. // $this->pckPackages[] = $pckPackage;
  784. // $pckPackage->setStudent($this);
  785. // }
  786. //
  787. // return $this;
  788. // }
  789. //
  790. // public function removePckPackage(PckPackages $pckPackage): self
  791. // {
  792. // if ($this->pckPackages->removeElement($pckPackage)) {
  793. // // set the owning side to null (unless already changed)
  794. // if ($pckPackage->getStudent() === $this) {
  795. // $pckPackage->setStudent(null);
  796. // }
  797. // }
  798. //
  799. // return $this;
  800. // }
  801. public function getSchoolCohort(): ?int
  802. {
  803. return $this->school_cohort;
  804. }
  805. public function setSchoolCohort(?int $school_cohort): self
  806. {
  807. $this->school_cohort = $school_cohort;
  808. return $this;
  809. }
  810. public function getCccId(): ?int
  811. {
  812. return $this->cccId;
  813. }
  814. public function setCccId(?int $cccId): static
  815. {
  816. $this->cccId = $cccId;
  817. return $this;
  818. }
  819. public function getSameDobSsnCounter(): ?int
  820. {
  821. return $this->sameDobSsnCounter;
  822. }
  823. public function setSameDobSsnCounter(int $sameDobSsnCounter): static
  824. {
  825. $this->sameDobSsnCounter = $sameDobSsnCounter;
  826. return $this;
  827. }
  828. public function getPhone3(): ?string
  829. {
  830. return $this->phone3;
  831. }
  832. public function setPhone3(?string $phone3): static
  833. {
  834. $this->phone3 = $phone3;
  835. return $this;
  836. }
  837. public function getPhone4(): ?string
  838. {
  839. return $this->phone4;
  840. }
  841. public function setPhone4(?string $phone4): static
  842. {
  843. $this->phone4 = $phone4;
  844. return $this;
  845. }
  846. public function getCccIdPending(): ?\DateTimeInterface
  847. {
  848. return $this->cccIdPending;
  849. }
  850. public function setCccIdPending(?\DateTimeInterface $cccIdPending): static
  851. {
  852. $this->cccIdPending = $cccIdPending;
  853. return $this;
  854. }
  855. public function getAuthnetProfileUpdated(): ?\DateTimeInterface
  856. {
  857. return $this->authnet_profile_updated;
  858. }
  859. public function setAuthnetProfileUpdated(?\DateTimeInterface $authnet_profile_updated): static
  860. {
  861. $this->authnet_profile_updated = $authnet_profile_updated;
  862. return $this;
  863. }
  864. public function getMaspedStudentId(): ?int
  865. {
  866. return $this->maspedStudentId;
  867. }
  868. public function setMaspedStudentId(?int $maspedStudentId): static
  869. {
  870. $this->maspedStudentId = $maspedStudentId;
  871. return $this;
  872. }
  873. }