Overview

Namespaces

  • Igestis
    • Modules
      • Commercial
  • None

Classes

  • CommercialAccounting
  • CommercialArticle
  • CommercialArticleCategory
  • CommercialAutoIncrement
  • CommercialBankAccount
  • CommercialBankAssocOperations
  • CommercialBankOperation
  • CommercialCommercialDocument
  • CommercialCompanyConfig
  • CommercialEstimate
  • CommercialEstimateArticle
  • CommercialFreeDocument
  • CommercialInvoice
  • CommercialInvoiceItem
  • CommercialParametersController
  • CommercialProject
  • CommercialProviderInvoice
  • CommercialProviderInvoiceAssocAmounts
  • CommercialPurchasingAccount
  • CommercialPurchasingAccountRepository
  • CommercialSellingAccount
  • CommercialSellingAccountRepository
  • CommercialSoldType
  • CommercialSupportCredit
  • CommercialSupportInitialSold
  • CommercialSupportIntervention
  • CommercialUserConfig
  • Overview
  • Namespace
  • Class
  • Tree
  • Todo
 1: <?php
 2: 
 3: 
 4: 
 5: 
 6: 
 7: /**
 8:  * CommercialSupportInitialSold
 9:  *
10:  * @Table(name="COMMERCIAL_SUPPORT_INITIAL_SOLD")
11:  * @Entity
12:  */
13: class CommercialSupportInitialSold
14: {
15:     /**
16:      * @var integer $period
17:      *
18:      * @Column(name="period", type="integer")
19:      */
20:     private $period;
21: 
22:     /**
23:      * @var integer $id
24:      *
25:      * @Column(name="id", type="integer")
26:      * @Id
27:      * @GeneratedValue(strategy="IDENTITY")
28:      */
29:     private $id;
30: 
31:     /**
32:      * @var CoreUsers
33:      *
34:      * @ManyToOne(targetEntity="CoreUsers")
35:      * @JoinColumns({
36:      *   @JoinColumn(name="commercial_customer_user_id", referencedColumnName="id")
37:      * })
38:      */
39:     private $commercialCustomerUser;
40: 
41: 
42:     /**
43:      * Set period
44:      *
45:      * @param integer $period
46:      * @return CommercialSupportInitialSold
47:      */
48:     public function setPeriod($period)
49:     {
50:         $this->period = $period;
51:         return $this;
52:     }
53: 
54:     /**
55:      * Get period
56:      *
57:      * @return integer 
58:      */
59:     public function getPeriod()
60:     {
61:         return $this->period;
62:     }
63: 
64:     /**
65:      * Get id
66:      *
67:      * @return integer 
68:      */
69:     public function getId()
70:     {
71:         return $this->id;
72:     }
73: 
74:     /**
75:      * Set commercialCustomerUser
76:      *
77:      * @param CoreUsers $commercialCustomerUser
78:      * @return CommercialSupportInitialSold
79:      */
80:     public function setCommercialCustomerUser(\CoreUsers $commercialCustomerUser = null)
81:     {
82:         $this->commercialCustomerUser = $commercialCustomerUser;
83:         return $this;
84:     }
85: 
86:     /**
87:      * Get commercialCustomerUser
88:      *
89:      * @return CoreUsers 
90:      */
91:     public function getCommercialCustomerUser()
92:     {
93:         return $this->commercialCustomerUser;
94:     }
95: }
igestis-iprojectis-v2 API documentation generated by ApiGen 2.8.0