积分变化

This commit is contained in:
2024-12-23 13:58:19 +08:00
parent c43e7a037a
commit 98a5c4f73f
5 changed files with 87 additions and 7 deletions

View File

@ -2,9 +2,15 @@
namespace plugin\points_mall\model;
use plugin\account\model\PluginAccountBind;
use think\admin\Model;
class PointsMallUserPointLog extends Model
{
protected $pk = 'uid';
public function user()
{
return $this->belongsTo(PluginAccountBind::class, 'uid');
}
}