| 1 | <?php |
||
| 14 | class Request extends \Model |
||
| 15 | {
|
||
| 16 | public static $cols = [ |
||
| 17 | 'post' => ['type' => 'textarea'], |
||
| 18 | 'get' => ['type' => 'textarea'], |
||
| 19 | 'result_callback' => ['type' => 'textarea'], |
||
| 20 | 'system' => ['type' => 'text'], |
||
| 21 | 'status' => ['type' => 'text'], |
||
| 22 | 'pay_id' => ['type' => 'select', 'source' => 'relation', 'relation' => 'pay'], |
||
| 23 | 'merchant_id' => ['type' => 'select', 'source' => 'relation', 'relation' => 'merchant'], |
||
| 24 | 'date_create' => ['type' => 'dateTime'] |
||
| 25 | ]; |
||
| 26 | |||
| 27 | public static function relations() |
||
| 40 | |||
| 41 | } |
||
| 42 |