Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shirne committed Jul 28, 2024
1 parent ae90d1a commit b247fb9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/application/common/validate/MemberMessageValidate.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

namespace app\common\validate;


use think\Validate;

class MemberMessageValidate extends Validate
{
protected $rule = [
'member_id|收信人' => 'require',
'title|标题' => 'require',
'content|内容' => 'require'
];
}

0 comments on commit b247fb9

Please sign in to comment.