course/app/common/service/RatioService.php

19 lines
257 B
PHP
Raw Normal View History

<?php
namespace app\common\service;
use app\common\model\Ratio;
class RatioService
{
/**
* @desc 定金比例
* @return mixed
*/
public static function ratio()
{
return Ratio::where(['id'=>1])->value('ratio');
}
}