|
@@ -16,6 +16,7 @@ import edu.travel.remote.commodity.ShopProductRemoteController;
|
|
import edu.travel.remote.dto.GetProductByTypeDto;
|
|
import edu.travel.remote.dto.GetProductByTypeDto;
|
|
import edu.travel.remote.dto.InsertProductDto;
|
|
import edu.travel.remote.dto.InsertProductDto;
|
|
import edu.travel.remote.dto.SearchProductDto;
|
|
import edu.travel.remote.dto.SearchProductDto;
|
|
|
|
+import edu.travel.remote.dto.UpdateProductDto;
|
|
import edu.travel.remote.upload.dto.EduFileDTO;
|
|
import edu.travel.remote.upload.dto.EduFileDTO;
|
|
import edu.travel.remote.upload.vo.FileVo;
|
|
import edu.travel.remote.upload.vo.FileVo;
|
|
import edu.travel.remote.vo.FileWebVo;
|
|
import edu.travel.remote.vo.FileWebVo;
|
|
@@ -23,6 +24,7 @@ import edu.travel.remote.vo.ShopProductVo;
|
|
import edu.travel.resp.BaseResponse;
|
|
import edu.travel.resp.BaseResponse;
|
|
import edu.travel.rpc.RPCBaseResponse;
|
|
import edu.travel.rpc.RPCBaseResponse;
|
|
import edu.travel.web.BaseController;
|
|
import edu.travel.web.BaseController;
|
|
|
|
+import org.springframework.beans.BeanUtils;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
@@ -143,4 +145,77 @@ public class ShopProductController extends BaseController<ShopProduct> implement
|
|
long id = IdUtils.getSnowflakeId();
|
|
long id = IdUtils.getSnowflakeId();
|
|
return success(id + "");
|
|
return success(id + "");
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 获取商品
|
|
|
|
+ * @param id
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ @GetMapping("/getFormId")
|
|
|
|
+ public RPCBaseResponse<ShopProductVo> getFormId(String id) {
|
|
|
|
+ RPCBaseResponse<ShopProduct> shopCurrencyRPCBaseResponse = super.getId(id);
|
|
|
|
+ RPCBaseResponse<ShopProductVo> shopCurrencyVoRPCBaseResponse = new RPCBaseResponse<>();
|
|
|
|
+ BeanUtils.copyProperties(shopCurrencyRPCBaseResponse, shopCurrencyVoRPCBaseResponse);
|
|
|
|
+ return shopCurrencyVoRPCBaseResponse;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 更新商品
|
|
|
|
+ * @param entity
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ @PostMapping("/updateById")
|
|
|
|
+ public RPCBaseResponse<ShopProductVo> updateTargetFormId(@RequestBody ShopProductVo entity) {
|
|
|
|
+ ShopProduct shopProduct = new ShopProduct();
|
|
|
|
+ BeanUtils.copyProperties(entity, shopProduct);
|
|
|
|
+ RPCBaseResponse<ShopProduct> shopCurrencyRPCBaseResponse = super.updateTargetById(shopProduct);
|
|
|
|
+ RPCBaseResponse<ShopProductVo> shopCurrencyVoRPCBaseResponse = new RPCBaseResponse<>();
|
|
|
|
+ BeanUtils.copyProperties(shopCurrencyRPCBaseResponse, shopCurrencyVoRPCBaseResponse);
|
|
|
|
+ return shopCurrencyVoRPCBaseResponse;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 新增商品
|
|
|
|
+ * @param entity
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ @PostMapping("/saveForm")
|
|
|
|
+ public RPCBaseResponse<ShopProductVo> saveFormTarget(@RequestBody ShopProductVo entity) {
|
|
|
|
+ ShopProduct shopProduct = new ShopProduct();
|
|
|
|
+ BeanUtils.copyProperties(entity, shopProduct);
|
|
|
|
+ RPCBaseResponse<ShopProduct> shopCurrencyRPCBaseResponse = super.saveTarget(shopProduct);
|
|
|
|
+ RPCBaseResponse<ShopProductVo> shopCurrencyVoRPCBaseResponse = new RPCBaseResponse<>();
|
|
|
|
+ BeanUtils.copyProperties(shopCurrencyRPCBaseResponse, shopCurrencyVoRPCBaseResponse);
|
|
|
|
+ return shopCurrencyVoRPCBaseResponse;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 删除商品
|
|
|
|
+ * @param ids
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ @PostMapping("/deleteById")
|
|
|
|
+ public RPCBaseResponse<ShopProductVo> deleteTargetFormId(List<String> ids) {
|
|
|
|
+ RPCBaseResponse<ShopProduct> shopCurrencyRPCBaseResponse = super.deleteTargetById(ids);
|
|
|
|
+ RPCBaseResponse<ShopProductVo> shopCurrencyVoRPCBaseResponse = new RPCBaseResponse<>();
|
|
|
|
+ BeanUtils.copyProperties(shopCurrencyRPCBaseResponse, shopCurrencyVoRPCBaseResponse);
|
|
|
|
+ return shopCurrencyVoRPCBaseResponse;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 获取所有商品
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ @GetMapping("/getAllForm")
|
|
|
|
+ public RPCBaseResponse<List<ShopProductVo>> getAllForm() {
|
|
|
|
+ RPCBaseResponse<List<ShopProduct>> shopCurrencyRPCBaseResponse = super.listAll();
|
|
|
|
+ RPCBaseResponse<List<ShopProductVo>> shopCurrencyVoRPCBaseResponse = new RPCBaseResponse<>();
|
|
|
|
+ BeanUtils.copyProperties(shopCurrencyRPCBaseResponse, shopCurrencyVoRPCBaseResponse);
|
|
|
|
+ return shopCurrencyVoRPCBaseResponse;
|
|
|
|
+ }
|
|
}
|
|
}
|