记得上下班打卡 | git大法好,push需谨慎

Commit 6ccbc7bf authored by GaoHu's avatar GaoHu

exit

parent 431a92e3
......@@ -27,4 +27,6 @@ public class SmileRedisConst {
public static final String SELL_SHOW_TOTAL_SALE_PRICE = PREFIX.concat("show:total:sale:price:"); //代理总销售金额 TotalSalePrice
public static final String SELL_SHOW_TOTAL_SALE_PRICE_USER = PREFIX.concat("show:total:sale:price:user:"); //用户销售总销售金额
}
......@@ -48,9 +48,15 @@ public class SmileShowController {
return smileShowService.sort(showSort);
}
@PostMapping("/make")
@PostMapping("/price")
@ApiOperation("打款")
public AjaxResult make(String performancesId) {
return smileShowService.make(performancesId);
public AjaxResult price(String performancesId) {
return smileShowService.price(performancesId);
}
@PostMapping("/saleData")
@ApiOperation("销售数据")
public AjaxResult saleData(String performancesId){
return smileShowService.saleData(performancesId);
}
}
......@@ -23,7 +23,9 @@ public interface ISmileShowService extends IService<SmileSchool> {
AjaxResult sort(ShowSort showSort);
AjaxResult make(String performancesId);
AjaxResult price(String performancesId);
AjaxResult getShowById(String performancesId);
AjaxResult saleData(String performancesId);
}
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