-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPayslipInfo.php
More file actions
executable file
·103 lines (88 loc) · 2.06 KB
/
PayslipInfo.php
File metadata and controls
executable file
·103 lines (88 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
class PayslipInfo {
private $name= '';
private $payPeriod = '';
private $incomeTax= '';
private $grossIncome = '';
private $netIncome = '';
private $super = '';
/**
* Setter for the property $name.
* param $name
*/
public function setName($name) {
$this->name = $name;
}
/**
* Getter for the property $name.
*/
public function getName() {
return $this->name;
}
/**
* Setter for the property $incomeTax.
* param $incomeTax
*/
public function setIncomeTax($incomeTax) {
$this->incomeTax = $incomeTax;
}
/**
* Getter for the property $incomeTax.
*/
public function getIncomeTax() {
return $this->incomeTax;
}
/**
* Setter for the property $grossIncome.
* param $grossIncome
*/
public function setGrossIncome($grossIncome) {
$this->grossIncome = $grossIncome;
}
/**
* Getter for the property $grossIncome.
*/
public function getGrossIncome() {
return $this->grossIncome;
}
/**
* Setter for the property $netIncome.
* param $netIncome
*/
public function setNetIncome($netIncome) {
$this->netIncome = $netIncome;
}
/**
* Getter for the property $netIncome.
*/
public function getNetIncome() {
return $this->netIncome;
}
/**
* Setter for the property $super.
* param $supser
*/
public function setSuper($super) {
$this->super = $super;
}
/**
* Getter for the property $super.
*/
public function getSuper() {
return $this->super;
}
/**
* Setter for the property $payPeriod.
* param $payPeriod
*/
public function setPayPeriod($payPeriod) {
$this->payPeriod = $payPeriod;
}
/**
* Getter for the property $payPeriod.
*/
public function getPayPeriod() {
return $this->payPeriod;
}
}
?>