www.maiwd.cn // +---------------------------------------------------------------------- /** * Class Refund * Desc 活动退款校验 * Create on 2024/3/12 17:30 * Create by wangyafang */ namespace app\api\validate\wdsxh\activity; use think\Validate; class Refund extends Validate { /** * 验证规则 */ protected $rule = [ 'activity_id'=>'require', 'apply_id'=>'require', ]; /** * 提示消息 */ protected $message = [ 'activity_id.require'=>'活动id不能为空', 'apply_id.require'=>'活动报名id不能为空', ]; /** * 验证场景 */ protected $scene = [ 'apply_refund' => ['activity_id','apply_id'], ]; }