Files
webman-buildadmin-mall/app/common/model/MallConfig.php

26 lines
521 B
PHP

<?php
declare(strict_types=1);
namespace app\common\model;
use support\think\Model;
/**
* 积分商城配置(比例等)
*/
class MallConfig extends Model
{
protected string $name = 'mall_config';
protected bool $autoWriteTimestamp = true;
protected array $type = [
'create_time' => 'integer',
'update_time' => 'integer',
'return_ratio' => 'float',
'unlock_ratio' => 'float',
'points_to_cash_ratio' => 'float',
];
}