Commit 0f54d17d by guojuxing

情报站修改

parent befdb2b2
......@@ -31,7 +31,7 @@ public class ProductMarketController {
* @return
*/
@RequestMapping("save-product-market")
public RestResponse saveProductMarket(ProductMarketQO param) {
public RestResponse saveProductMarket(com.gic.operation.web.qo.ProductMarketQO param) {
ProductMarketDTO productMarketDTO = EntityUtil.changeEntityNew(ProductMarketDTO.class, param);
return ResultControllerUtils.commonResult(productMarketApiService.saveProductMarket(productMarketDTO));
}
......@@ -42,7 +42,7 @@ public class ProductMarketController {
* @return
*/
@RequestMapping("update-product-market")
public RestResponse updateProductMarket(ProductMarketQO param) {
public RestResponse updateProductMarket(com.gic.operation.web.qo.ProductMarketQO param) {
ProductMarketDTO productMarketDTO = EntityUtil.changeEntityNew(ProductMarketDTO.class, param);
return ResultControllerUtils.commonResult(productMarketApiService.updateProductMarket(productMarketDTO));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment