2019-06-21 18:05:58 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
namespace backend\modules\balance\models;
|
|
|
|
|
|
|
|
|
2019-06-25 18:28:20 +03:00
|
|
|
use common\classes\Debug;
|
2019-06-21 18:05:58 +03:00
|
|
|
use common\models\FieldsValue;
|
2019-06-25 12:37:09 +03:00
|
|
|
use common\models\FieldsValueNew;
|
2019-06-21 18:05:58 +03:00
|
|
|
use common\models\ProjectUser;
|
|
|
|
use yii\helpers\ArrayHelper;
|
|
|
|
|
2019-06-26 14:03:42 +03:00
|
|
|
/**
|
|
|
|
* This is the model class for table "company".
|
|
|
|
*
|
|
|
|
* @property int $id
|
|
|
|
* @property int $type
|
|
|
|
* @property int $summ
|
|
|
|
* @property int $dt_add
|
|
|
|
*/
|
2019-06-21 18:05:58 +03:00
|
|
|
class Balance extends \common\models\Balance
|
|
|
|
{
|
2020-08-06 13:19:20 +03:00
|
|
|
public function behaviors()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'log' => [
|
|
|
|
'class' => \common\behaviors\LogBehavior::class,
|
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
2019-06-21 18:05:58 +03:00
|
|
|
}
|