'require', 'orderId' => 'require', 'productId' => 'require', 'third_type' => 'require', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', 'orderId' => '预约订单ID', 'productId' => '产品ID', 'third_type' => '订单来源', ]; /** * @notes 添加场景 * @return ThirdOrdersValidate * @author likeadmin * @date 2025/03/06 16:57 */ public function sceneAdd() { return $this->only(['orderId','productId','third_type']); } /** * @notes 编辑场景 * @return ThirdOrdersValidate * @author likeadmin * @date 2025/03/06 16:57 */ public function sceneEdit() { return $this->only(['id','orderId','productId','third_type']); } /** * @notes 删除场景 * @return ThirdOrdersValidate * @author likeadmin * @date 2025/03/06 16:57 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes 详情场景 * @return ThirdOrdersValidate * @author likeadmin * @date 2025/03/06 16:57 */ public function sceneDetail() { return $this->only(['id']); } }