Your IP : 216.73.216.79


Current Path : /var/www/html/sprm/backend/models/
Upload File :
Current File : /var/www/html/sprm/backend/models/BanciNextMonth.php

<?php

namespace backend\models;

use Yii;

/**
 * This is the model class for table "banci_next_month".
 *
 * @property int $banci_next_month_id
 * @property string $banci_next_month_date
 * @property string $banci_next_month_description
 * @property string $created_at
 * @property string $created_by
 * @property string $updated_at
 * @property string $updated_by
 */
class BanciNextMonth extends \common\models\Dermaga
{   
    public $nextmonthstart;
    public $nextmonthend;
    /**
     * @inheritdoc
     */
    public static function tableName()
    {
        return 'banci_next_month';
    }

    /**
     * @inheritdoc
     */
    public function rules()
    {
        return [
            [['banci_next_month_date', 'created_at', 'updated_at'], 'safe'],
            [['banci_next_month_description'], 'string', 'max' => 1500],
            [['created_by', 'updated_by'], 'string', 'max' => 20],
        ];
    }

    /**
     * @inheritdoc
     */
    public function attributeLabels()
    {
        return [
            'banci_next_month_id' => Yii::t('app', 'Banci Next Month ID'),
            'nextmonthstart' => Yii::t('app', 'Tarikh Dari'),
            'nextmonthend' => Yii::t('app', 'Tarikh Hingga'),
            'banci_next_month_date' => Yii::t('app', 'Tarikh'),
            'banci_next_month_description' => Yii::t('app', 'Penerangan'),
            'created_at' => Yii::t('app', 'Created At'),
            'created_by' => Yii::t('app', 'Created By'),
            'updated_at' => Yii::t('app', 'Updated At'),
            'updated_by' => Yii::t('app', 'Updated By'),
        ];
    }
}