blob: aaf8db7c0dec42f547576ce8fc2f440923f9ca47 (
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
{
const TABLE='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);
}
}
?>
|