first commit

This commit is contained in:
Your Name
2026-01-19 14:19:22 +08:00
commit fe2d9c1868
4777 changed files with 665503 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
<?php
namespace app\adminapi\validate\user;
use app\common\validate\BaseValidate;
/**
* 挖矿记录验证器
* Class UserMineRecordValidate
* @package app\adminapi\validate\user
*/
class UserMineRecordValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
];
/**
* @notes 添加场景
* @return UserMineRecordValidate
* @author BD
* @date 2025/01/01 15:47
*/
public function sceneAdd()
{
return $this->remove('id', true);
}
/**
* @notes 编辑场景
* @return UserMineRecordValidate
* @author BD
* @date 2025/01/01 15:47
*/
public function sceneEdit()
{
return $this->only(['id']);
}
/**
* @notes 删除场景
* @return UserMineRecordValidate
* @author BD
* @date 2025/01/01 15:47
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return UserMineRecordValidate
* @author BD
* @date 2025/01/01 15:47
*/
public function sceneDetail()
{
return $this->only(['id']);
}
}