'require', 'action' => 'require', 'amount' => 'require', 'remark' => 'require' ]; /** * 参数描述 * @var string[] */ protected $field = [ 'worker_id' => '工程师ID', 'action' => '动作', 'amount' => '金额', 'remark' => '备注', ]; /** * @notes 添加场景 * @return MasterWorkerValidate * @author likeadmin * @date 2024/07/10 18:17 */ public function sceneAdd() { return $this->only(['worker_id','action','amount','remark']); } /** * @notes 详情场景 * @return MasterWorkerValidate * @author likeadmin * @date 2024/07/10 18:17 */ public function sceneTotalAmount() { return $this->only(['worker_id']); } }