add collection
This commit is contained in:
31
common/models/CollectionCreate.php
Normal file
31
common/models/CollectionCreate.php
Normal 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;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user