| | |
| | | import com.ruoyi.other.vo.ShopPointStatistics; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.servlet.http.HttpServletResponse; |
| | |
| | | } |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 保存门店积分流水 |
| | | * @param shopPoint |
| | | */ |
| | | @PostMapping("/saveShopPoint") |
| | | public void saveShopPoint(@RequestBody ShopPoint shopPoint){ |
| | | shopPointService.save(shopPoint); |
| | | } |
| | | |
| | | } |
| | | |