19 lines
257 B
PHP
19 lines
257 B
PHP
<?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');
|
|
}
|
|
|
|
} |