src/Entity/SanctionedStatistics.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * SanctionedStatistics
  6.  *
  7.  * @ORM\Table(name="sanctioned_statistics")
  8.  * @ORM\Entity
  9.  */
  10. class SanctionedStatistics
  11. {
  12.    /**
  13.      * @var integer
  14.      *
  15.      * @ORM\Column(name="id", type="integer", nullable=false, options={"default"="nextval('sanctioned_statistics_id_seq'::regclass)"})
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="SEQUENCE")
  18.      * @ORM\SequenceGenerator(sequenceName="sanctioned_statistics_id_seq", allocationSize=1, initialValue=1)
  19.      */
  20.     private $id;
  21.     /**
  22.      * @var string
  23.      *
  24.      * @ORM\Column(name="pao_total_sanctioned_loans", type="text")
  25.      */
  26.     private $paoTotalSanctionedLoans;
  27.     /**
  28.      * @var string
  29.      *
  30.      * @ORM\Column(name="pao_completed_under10", type="text")
  31.      */
  32.     private $paoCompletedUnder10;
  33.     /**
  34.      * @var string
  35.      *
  36.      * @ORM\Column(name="pao_completed_upto20", type="text")
  37.      */
  38.     private $paoCompletedUpto20;
  39.     /**
  40.      * @var string
  41.      *
  42.      * @ORM\Column(name="pao_completed_greater20", type="text")
  43.      */
  44.     private $paoCompletedGreater20;
  45.     
  46.     /**
  47.      * @var string
  48.      *
  49.      * @ORM\Column(name="percent10", type="text",nullable=true)
  50.      */
  51.     private $percent10;
  52.     
  53.      /**
  54.      * @var string
  55.      *
  56.      * @ORM\Column(name="percent20", type="text",nullable=true)
  57.      */
  58.     private $percent20;
  59.     
  60.      /**
  61.      * @var string
  62.      *
  63.      * @ORM\Column(name="percent30", type="text",nullable=true)
  64.      */
  65.     private $percent30;
  66.     /**
  67.      * @var \DateTime
  68.      *
  69.      * @ORM\Column(name="entered_date", type="datetime")
  70.      */
  71.     private $enteredDate;
  72.     /**
  73.      * Get id
  74.      *
  75.      * @return integer 
  76.      */
  77.     public function getId()
  78.     {
  79.         return $this->id;
  80.     }
  81.     /**
  82.      * Set paoTotalUnder10
  83.      *
  84.      * @param string $paoTotalUnder10
  85.      * @return SanctionedStatistics
  86.      */
  87.     public function setPaoTotalUnder10($paoTotalUnder10)
  88.     {
  89.         $this->paoTotalUnder10 $paoTotalUnder10;
  90.         return $this;
  91.     }
  92.     /**
  93.      * Get paoTotalUnder10
  94.      *
  95.      * @return string 
  96.      */
  97.     public function getPaoTotalUnder10()
  98.     {
  99.         return $this->paoTotalUnder10;
  100.     }
  101.     /**
  102.      * Set paoCompletedUnder10
  103.      *
  104.      * @param string $paoCompletedUnder10
  105.      * @return SanctionedStatistics
  106.      */
  107.     public function setPaoCompletedUnder10($paoCompletedUnder10)
  108.     {
  109.         $this->paoCompletedUnder10 $paoCompletedUnder10;
  110.         return $this;
  111.     }
  112.     /**
  113.      * Get paoCompletedUnder10
  114.      *
  115.      * @return string 
  116.      */
  117.     public function getPaoCompletedUnder10()
  118.     {
  119.         return $this->paoCompletedUnder10;
  120.     }
  121.     /**
  122.      * Set paoTotalUpto20
  123.      *
  124.      * @param string $paoTotalUpto20
  125.      * @return SanctionedStatistics
  126.      */
  127.     public function setPaoTotalUpto20($paoTotalUpto20)
  128.     {
  129.         $this->paoTotalUpto20 $paoTotalUpto20;
  130.         return $this;
  131.     }
  132.     /**
  133.      * Get paoTotalUpto20
  134.      *
  135.      * @return string 
  136.      */
  137.     public function getPaoTotalUpto20()
  138.     {
  139.         return $this->paoTotalUpto20;
  140.     }
  141.     /**
  142.      * Set paoCompletedUpto20
  143.      *
  144.      * @param string $paoCompletedUpto20
  145.      * @return SanctionedStatistics
  146.      */
  147.     public function setPaoCompletedUpto20($paoCompletedUpto20)
  148.     {
  149.         $this->paoCompletedUpto20 $paoCompletedUpto20;
  150.         return $this;
  151.     }
  152.     /**
  153.      * Get paoCompletedUpto20
  154.      *
  155.      * @return string 
  156.      */
  157.     public function getPaoCompletedUpto20()
  158.     {
  159.         return $this->paoCompletedUpto20;
  160.     }
  161.     /**
  162.      * Set paoTotalGreater20
  163.      *
  164.      * @param string $paoTotalGreater20
  165.      * @return SanctionedStatistics
  166.      */
  167.     public function setPaoTotalGreater20($paoTotalGreater20)
  168.     {
  169.         $this->paoTotalGreater20 $paoTotalGreater20;
  170.         return $this;
  171.     }
  172.     /**
  173.      * Get paoTotalGreater20
  174.      *
  175.      * @return string 
  176.      */
  177.     public function getPaoTotalGreater20()
  178.     {
  179.         return $this->paoTotalGreater20;
  180.     }
  181.     /**
  182.      * Set paoCompletedGreater20
  183.      *
  184.      * @param string $paoCompletedGreater20
  185.      * @return SanctionedStatistics
  186.      */
  187.     public function setPaoCompletedGreater20($paoCompletedGreater20)
  188.     {
  189.         $this->paoCompletedGreater20 $paoCompletedGreater20;
  190.         return $this;
  191.     }
  192.     /**
  193.      * Get paoCompletedGreater20
  194.      *
  195.      * @return string 
  196.      */
  197.     public function getPaoCompletedGreater20()
  198.     {
  199.         return $this->paoCompletedGreater20;
  200.     }
  201.     /**
  202.      * Set enteredDate
  203.      *
  204.      * @param \DateTime $enteredDate
  205.      * @return SanctionedStatistics
  206.      */
  207.     public function setEnteredDate($enteredDate)
  208.     {
  209.         $this->enteredDate $enteredDate;
  210.         return $this;
  211.     }
  212.     /**
  213.      * Get enteredDate
  214.      *
  215.      * @return \DateTime 
  216.      */
  217.     public function getEnteredDate()
  218.     {
  219.         return $this->enteredDate;
  220.     }
  221.     /**
  222.      * Set paoTotalSanctionedLoans
  223.      *
  224.      * @param string $paoTotalSanctionedLoans
  225.      * @return SanctionedStatistics
  226.      */
  227.     public function setPaoTotalSanctionedLoans($paoTotalSanctionedLoans)
  228.     {
  229.         $this->paoTotalSanctionedLoans $paoTotalSanctionedLoans;
  230.         return $this;
  231.     }
  232.     /**
  233.      * Get paoTotalSanctionedLoans
  234.      *
  235.      * @return string 
  236.      */
  237.     public function getPaoTotalSanctionedLoans()
  238.     {
  239.         return $this->paoTotalSanctionedLoans;
  240.     }
  241.     /**
  242.      * Set percent10
  243.      *
  244.      * @param string $percent10
  245.      * @return SanctionedStatistics
  246.      */
  247.     public function setPercent10($percent10)
  248.     {
  249.         $this->percent10 $percent10;
  250.         return $this;
  251.     }
  252.     /**
  253.      * Get percent10
  254.      *
  255.      * @return string 
  256.      */
  257.     public function getPercent10()
  258.     {
  259.         return $this->percent10;
  260.     }
  261.     /**
  262.      * Set percent20
  263.      *
  264.      * @param string $percent20
  265.      * @return SanctionedStatistics
  266.      */
  267.     public function setPercent20($percent20)
  268.     {
  269.         $this->percent20 $percent20;
  270.         return $this;
  271.     }
  272.     /**
  273.      * Get percent20
  274.      *
  275.      * @return string 
  276.      */
  277.     public function getPercent20()
  278.     {
  279.         return $this->percent20;
  280.     }
  281.     /**
  282.      * Set percent30
  283.      *
  284.      * @param string $percent30
  285.      * @return SanctionedStatistics
  286.      */
  287.     public function setPercent30($percent30)
  288.     {
  289.         $this->percent30 $percent30;
  290.         return $this;
  291.     }
  292.     /**
  293.      * Get percent30
  294.      *
  295.      * @return string 
  296.      */
  297.     public function getPercent30()
  298.     {
  299.         return $this->percent30;
  300.     }
  301. }