'require|integer', 'name|资产名称' => 'require', 'unit|规格单位' => 'require', ]; public function sceneCreate(): \think\Validate { return $this->only(['name', 'unit']); } public function sceneUpdate(): \think\Validate { return $this->only(['name', 'unit', 'id']); } }