32 lines
654 B
PHP
32 lines
654 B
PHP
<?php
|
|
|
|
namespace common\models;
|
|
|
|
use Yii;
|
|
use common\components\AccountAwareBehavior;
|
|
use common\components\UserAwareBehavior;
|
|
use yii\helpers\ArrayHelper;
|
|
use yii\behaviors\TimestampBehavior;
|
|
|
|
/**
|
|
* This is the model class for table "collection".
|
|
*
|
|
* @property integer $id_collection
|
|
* @property integer $id_user
|
|
* @property integer $created_by
|
|
* @property integer $id_account
|
|
* @property integer $money
|
|
* @property string $start
|
|
* @property string $end
|
|
* @property integer $type
|
|
* @property string $created_at
|
|
* @property string $updated_at
|
|
*/
|
|
class CollectionCreate extends \common\models\Collection
|
|
{
|
|
|
|
public $lastCollection;
|
|
|
|
|
|
}
|