| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?php
- // +----------------------------------------------------------------------
- // | likeadmin快速开发前后端分离管理后台(PHP版)
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | 开源版本可自由商用,可去除界面版权logo
- // | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
- // | github下载:https://github.com/likeshop-github/likeadmin
- // | 访问官网:https://www.likeadmin.cn
- // | likeadmin团队 版权所有 拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeadminTeam
- // +----------------------------------------------------------------------
- namespace app\adminapi\validate\property;
- use app\common\validate\BaseValidate;
- /**
- * PropertyHead验证器
- * Class PropertyHeadValidate
- * @package app\adminapi\validate
- */
- class PropertyHeadValidate extends BaseValidate
- {
- /**
- * 设置校验规则
- * @var string[]
- */
- protected $rule = [
- 'id' => 'require',
- 'property_name' => 'require',
- 'village_name' => 'require',
- 'address' => 'require',
- 'head_name' => 'require',
- 'head_mobile' => 'require',
- 'ratio' => 'require',
- 'head_bank_card' => 'require',
- ];
- /**
- * 参数描述
- * @var string[]
- */
- protected $field = [
- 'id' => 'id',
- 'property_name' => '物业名称',
- 'village_name' => '小区名称',
- 'address' => '小区地址',
- 'head_name' => '负责人名称',
- 'head_mobile' => '负责人手机号/电话',
- 'ratio' => '提成比例',
- 'head_bank_card' => '负责人银行卡号',
- ];
- /**
- * @notes 添加场景
- * @return PropertyHeadValidate
- * @author likeadmin
- * @date 2024/09/19 10:48
- */
- public function sceneAdd()
- {
- return $this->only(['property_name','village_name','address','head_name','head_mobile']);
- }
- /**
- * @notes 编辑场景
- * @return PropertyHeadValidate
- * @author likeadmin
- * @date 2024/09/19 10:48
- */
- public function sceneEdit()
- {
- return $this->only(['id','property_name','village_name','address','head_name','head_mobile','head_bank_card']);
- }
- /**
- * @notes 删除场景
- * @return PropertyHeadValidate
- * @author likeadmin
- * @date 2024/09/19 10:48
- */
- public function sceneDelete()
- {
- return $this->only(['id']);
- }
- /**
- * @notes 详情场景
- * @return PropertyHeadValidate
- * @author likeadmin
- * @date 2024/09/19 10:48
- */
- public function sceneDetail()
- {
- return $this->only(['id']);
- }
- }
|