mkm e721b96263 feat: 添加新的支付方式统计功能
fix: 修复商品退款金额统计错误的bug
refactor: 重构代码,优化代码结构
style: 代码风格优化,添加缺失的分号
test: 添加商品退款金额的测试
docs: 更新商品退款金额的文档说明
build: 更新项目依赖
ops: 更新部署脚本
chore: 更新项目版本
2024-06-21 11:18:03 +08:00

21 lines
333 B
PHP

<?php
namespace app\common\model\user_sign;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 积分记录
* Class UserSign
* @package app\common\model\user_sign
*/
class UserSign extends BaseModel
{
use SoftDelete;
protected $name = 'user_sign';
protected $deleteTime = 'delete_time';
}