blob: e61ed233b19b334b61a092af5f984adc4310fc3a (
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
36
37
38
39
40
|
<?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()
{
return self::getRecordFinder('AddressRecord');
}
}
?>
|