|
@@ -12,7 +12,6 @@ import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
@@ -33,7 +32,7 @@ public class MoreServiceController {
|
|
|
@Autowired
|
|
|
private ProductOrderFacade productOrderFacade;
|
|
|
|
|
|
- @ApiOperation(value = "根据用户id查询已开通信息", notes = "根据用户id查询已开通信息")
|
|
|
+ @ApiOperation(value = "根据用户id查询已开通信息[by:wangyu]", notes = "根据用户id查询已开通信息")
|
|
|
@PostMapping("/showProductInfo")
|
|
|
@SysLogger("showProductInfo")
|
|
|
public RespDTO<LantoneProduct> showProductInfo(Page page){
|
|
@@ -41,7 +40,7 @@ public class MoreServiceController {
|
|
|
return RespDTO.onSuc(diagLantoneProducts);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "生成订单", notes = "根据用户所选择的产品生成订单")
|
|
|
+ @ApiOperation(value = "生成订单[by:wangyu]", notes = "根据用户所选择的产品生成订单")
|
|
|
@PostMapping("/addOrder")
|
|
|
@SysLogger("addOrder")
|
|
|
@Transactional
|