Fix #7123 - getting abra ready to test
[Pman.Xtuple] / DataObjects / Ipsfreight.php
1 <?php
2 /**
3  * Table Definition for ipsfreight
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Xtuple_DataObjects_Ipsfreight extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'ipsfreight';          // table name
13     public $ipsfreight_id;                   // int4(4)  not_null default_nextval%28ipsfreight_ipsfreight_id_seq%29 primary_key
14     public $ipsfreight_ipshead_id;           // int4(4)  not_null
15     public $ipsfreight_qtybreak;             // numeric(-1)  not_null default_0
16     public $ipsfreight_price;                // numeric(-1)  not_null default_0
17     public $ipsfreight_type;                 // bpchar(-1)  not_null
18     public $ipsfreight_warehous_id;          // int4(4)  
19     public $ipsfreight_shipzone_id;          // int4(4)  
20     public $ipsfreight_freightclass_id;      // int4(4)  
21     public $ipsfreight_shipvia;              // text(-1)  
22
23     
24    /**
25     * Getter / Setter for $ipsfreight_freightclass_id
26     *
27     * @param    mixed   (optional) value to assign
28     * @access   public
29     */
30     public function freightclass() {
31         return func_num_args() ? $this->link('ipsfreight_freightclass_id', func_get_arg(0)) : $this->link('ipsfreight_freightclass_id');
32     }
33
34    /**
35     * Getter / Setter for $ipsfreight_ipshead_id
36     *
37     * @param    mixed   (optional) value to assign
38     * @access   public
39     */
40     public function ipshead() {
41         return func_num_args() ? $this->link('ipsfreight_ipshead_id', func_get_arg(0)) : $this->link('ipsfreight_ipshead_id');
42     }
43
44    /**
45     * Getter / Setter for $ipsfreight_shipzone_id
46     *
47     * @param    mixed   (optional) value to assign
48     * @access   public
49     */
50     public function shipzone() {
51         return func_num_args() ? $this->link('ipsfreight_shipzone_id', func_get_arg(0)) : $this->link('ipsfreight_shipzone_id');
52     }
53
54    /**
55     * Getter / Setter for $ipsfreight_warehous_id
56     *
57     * @param    mixed   (optional) value to assign
58     * @access   public
59     */
60     public function warehous() {
61         return func_num_args() ? $this->link('ipsfreight_warehous_id', func_get_arg(0)) : $this->link('ipsfreight_warehous_id');
62     }
63
64
65     /* the code above is auto generated do not remove the tag below */
66     ###END_AUTOCODE
67 }