diff --git a/yshop-api/src/main/java/co/yixiang/modules/shop/web/controller/YxSystemStoreController.java b/yshop-api/src/main/java/co/yixiang/modules/shop/web/controller/YxSystemStoreController.java deleted file mode 100644 index 37a619f0..00000000 --- a/yshop-api/src/main/java/co/yixiang/modules/shop/web/controller/YxSystemStoreController.java +++ /dev/null @@ -1,91 +0,0 @@ -package co.yixiang.modules.shop.web.controller; - -import co.yixiang.modules.shop.entity.YxSystemStore; -import co.yixiang.modules.shop.service.YxSystemStoreService; -import co.yixiang.modules.shop.web.param.YxSystemStoreQueryParam; -import co.yixiang.modules.shop.web.vo.YxSystemStoreQueryVo; -import co.yixiang.common.web.controller.BaseController; -import co.yixiang.common.api.ApiResult; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import lombok.extern.slf4j.Slf4j; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; - -import javax.validation.Valid; - -import co.yixiang.common.web.vo.Paging; -import co.yixiang.common.web.param.IdParam; - -/** - *
- * 门店自提 前端控制器 - *
- * - * @author hupeng - * @since 2020-03-04 - */ -@Slf4j -@RestController -@RequestMapping("/yxSystemStore") -@Api("门店自提 API") -public class YxSystemStoreController extends BaseController { - - @Autowired - private YxSystemStoreService yxSystemStoreService; - - /** - * 添加门店自提 - */ - @PostMapping("/add") - @ApiOperation(value = "添加YxSystemStore对象",notes = "添加门店自提",response = ApiResult.class) - public ApiResult