1
zj
2026-03-23 efb07bcec37c49228d9760794f215c8549243ad2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 package com.nq.controller.backend;
 
 
 import com.nq.common.ServerResponse;
 import com.nq.pojo.SiteProduct;
 import com.nq.service.ISiteProductService;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Controller;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.ResponseBody;
 
 
 @Controller
 @RequestMapping({"/admin/product/"})
 public class AdminSiteProductController {
     private static final Logger log = LoggerFactory.getLogger(AdminSiteProductController.class);
 
     @Autowired
     ISiteProductService iSiteProductService;
 
     //风控设置 修改产品配置信息
     @RequestMapping({"update.do"})
     @ResponseBody
     public ServerResponse update(SiteProduct siteProduct) {
         return this.iSiteProductService.update(siteProduct);
     }
 }