add collection

This commit is contained in:
2015-11-03 09:50:54 +01:00
parent b6b5193120
commit 33bf52df60
22 changed files with 1073 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<?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;
}