webman/app/model/ExchangeRate.php

27 lines
378 B
PHP

<?php
namespace app\model;
use support\Model;
class ExchangeRate extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'exchange_rate';
/**
* The primary key associated with the table.
*
* @var string
*/
protected $primaryKey = 'id';
public $timestamps = false;
}