Fix #7123 - getting abra ready to test
[Pman.Xtuple] / DataObjects / Cashrcptmisc.php
1 <?php
2 /**
3  * Table Definition for cashrcptmisc
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Xtuple_DataObjects_Cashrcptmisc extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'cashrcptmisc';        // table name
13     public $cashrcptmisc_id;                 // int4(4)  not_null default_nextval%28cashrcptmisc_cashrcptmisc_id_seq%29 primary_key
14     public $cashrcptmisc_cashrcpt_id;        // int4(4)  not_null
15     public $cashrcptmisc_accnt_id;           // int4(4)  not_null
16     public $cashrcptmisc_amount;             // numeric(-1)  not_null
17     public $cashrcptmisc_notes;              // text(-1)  
18
19     
20    /**
21     * Getter / Setter for $cashrcptmisc_accnt_id
22     *
23     * @param    mixed   (optional) value to assign
24     * @access   public
25     */
26     public function accnt() {
27         return func_num_args() ? $this->link('cashrcptmisc_accnt_id', func_get_arg(0)) : $this->link('cashrcptmisc_accnt_id');
28     }
29
30    /**
31     * Getter / Setter for $cashrcptmisc_cashrcpt_id
32     *
33     * @param    mixed   (optional) value to assign
34     * @access   public
35     */
36     public function cashrcpt() {
37         return func_num_args() ? $this->link('cashrcptmisc_cashrcpt_id', func_get_arg(0)) : $this->link('cashrcptmisc_cashrcpt_id');
38     }
39
40
41     /* the code above is auto generated do not remove the tag below */
42     ###END_AUTOCODE
43 }