优化页面和模型

This commit is contained in:
2026-03-30 18:33:24 +08:00
parent 2686c54781
commit 1cd5c3142d
33 changed files with 817 additions and 215 deletions

View File

@@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
namespace app\common\model;
use support\think\Model;
/**
* 领取记录(幂等)
*/
class MallClaimLog extends Model
{
protected string $name = 'mall_claim_log';
protected array $type = [
'claimed_amount' => 'integer',
'create_time' => 'integer',
];
}