nk-lihaink-cn/app/validate/merchant/admin/MerchantCategoryValidate.php
2023-03-16 16:19:42 +08:00

23 lines
460 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* @date 2023年03月16日
* @author刘孝全
* @emailq8197264@126.com
*
* @ 商户分类参数验证
*/
namespace app\validate\merchant\admin;
use think\Validate;
class MerchantCategoryValidate extends Validate
{
protected $failException = true;
protected $rule = [
'category_name|分类名称' => 'require|max:32',
'commission_rate|手续费' => 'require|float|>=:0|<=:100'
];
}