|
@@ -8,6 +8,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import com.diagbot.annotation.SysLogger;
|
|
import com.diagbot.annotation.SysLogger;
|
|
|
|
+import com.diagbot.dto.EnShowOptionDTO;
|
|
import com.diagbot.dto.GetConsoleOnTrialDTO;
|
|
import com.diagbot.dto.GetConsoleOnTrialDTO;
|
|
import com.diagbot.dto.GetConsoleOpenedDTO;
|
|
import com.diagbot.dto.GetConsoleOpenedDTO;
|
|
import com.diagbot.dto.OpenUpOnTrialDTO;
|
|
import com.diagbot.dto.OpenUpOnTrialDTO;
|
|
@@ -62,5 +63,13 @@ public class ProductOrderController {
|
|
public RespDTO<OpenUpOnTrialDTO> openUpOnTrial(OpenUpOnTrialVO openUpOnTrialVO) {
|
|
public RespDTO<OpenUpOnTrialDTO> openUpOnTrial(OpenUpOnTrialVO openUpOnTrialVO) {
|
|
return RespDTO.onSuc(openedProductsFacade.openUpOnTrial(openUpOnTrialVO));
|
|
return RespDTO.onSuc(openedProductsFacade.openUpOnTrial(openUpOnTrialVO));
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ @ApiOperation(value = "控制台-可展示的选项卡",notes="控制台-可展示的选项卡")
|
|
|
|
+ @PostMapping("/enShowOption")
|
|
|
|
+ @SysLogger("enShowOption")
|
|
|
|
+ public RespDTO<EnShowOptionDTO> enShowOption() {
|
|
|
|
+ return RespDTO.onSuc(openedProductsFacade.enShowOption());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|