| Current Path : /var/www/html/crm/models/ |
| Current File : /var/www/html/crm/models/BankReconciliation.php |
<?php
namespace app\models;
use Yii;
/**
* This is the model class for table "bank_reconciliation".
*
* @property int $id
* @property string $table_name
* @property int $data_id
* @property string $status
* @property string $statement_dt
* @property string $ref_no
* @property string $remarks
* @property string $created_dt
* @property int $created_by
* @property string $updated_dt
* @property int $updated_by
*/
class BankReconciliation extends \yii\db\ActiveRecord
{
/**
* {@inheritdoc}
*/
public static function tableName()
{
return 'bank_reconciliation';
}
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['data_id', 'created_by', 'updated_by'], 'integer'],
[['statement_dt', 'created_dt', 'updated_dt'], 'safe'],
[['remarks'], 'string'],
[['table_name', 'status', 'ref_no'], 'string', 'max' => 255],
];
}
/**
* {@inheritdoc}
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'table_name' => 'Table Name',
'data_id' => 'Data ID',
'status' => 'Status',
'statement_dt' => 'Statement Dt',
'ref_no' => 'Ref No',
'remarks' => 'Remarks',
'created_dt' => 'Created Dt',
'created_by' => 'Created By',
'updated_dt' => 'Updated Dt',
'updated_by' => 'Updated By',
];
}
}