RemoteToday.php 275 B

123456789101112131415
  1. <?php
  2. namespace app\api\validate\remote;
  3. use app\api\validate\ZskkDefaultValidate;
  4. class RemoteToday extends ZskkDefaultValidate {
  5. protected $rule = [
  6. 'today' => 'require',
  7. ];
  8. protected $message = [
  9. 'today.require' => '当前天数必须',
  10. ];
  11. }