'require', 'third_type' => 'require', 'goods_id' => 'require', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', 'third_type' => '平台名称', 'goods_id' => '商品ID', ]; /** * @notes 添加场景 * @return ThirdGoodsValidate * @author likeadmin * @date 2025/03/06 16:57 */ public function sceneAdd() { return $this->only(['third_type','goods_id']); } /** * @notes 编辑场景 * @return ThirdGoodsValidate * @author likeadmin * @date 2025/03/06 16:57 */ public function sceneEdit() { return $this->only(['id','third_type','goods_id']); } /** * @notes 删除场景 * @return ThirdGoodsValidate * @author likeadmin * @date 2025/03/06 16:57 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes 详情场景 * @return ThirdGoodsValidate * @author likeadmin * @date 2025/03/06 16:57 */ public function sceneDetail() { return $this->only(['id']); } }