blob: b7c930265ed88627ac84c3ccae56a7c1eff44d4c (
plain)
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
|
<?php
/**
* Auto generated by prado-cli.php on 2007-01-16 06:44:16.
*/
class AddressRecord extends TActiveRecord
{
public static $_tablename='addresses';
/**
* @var integer $id
* @soapproperty
*/
public $id;
/**
* @var string $username
* @soapproperty
*/
public $username;
/**
* @var string $phone
* @soapproperty
*/
public $phone;
/**
* @return AddressRecord
*/
public static function finder($className==__CLASS__)
{
return parent::finder($className);
}
}
?>
|