|
|
@@ -132,6 +132,18 @@ public class DomainOrderController extends BaseController {
|
|
|
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ //添加超链collectionId
|
|
|
+ @PostMapping("/addHyperLink")
|
|
|
+ public void addHyperLinkWhitId(@RequestParam Long assetId, @RequestParam("openHyperLink") boolean openHyperLink,
|
|
|
+ @RequestParam("hyperLinkType") HyperLinkType hyperLinkType,
|
|
|
+ @RequestParam("address") String address,
|
|
|
+ @RequestParam Long publicCollectionId) {
|
|
|
+ domainOrderService.addHyperLink(assetId, openHyperLink, hyperLinkType, address);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
//我的超链
|
|
|
@GetMapping("/showMyHyperLink")
|
|
|
public List<Map<String, Object>> showMyHyperLink(){
|