新增返回员工某一日的订单接口

This commit is contained in:
czx 2020-12-18 17:53:51 +08:00
parent 979a450afd
commit 690b4e56e8

View File

@ -64,7 +64,7 @@ public class ClientController extends BaseController {
* 日期2020年12月11日
* 作者陈智兴
*
* @return
* return
*/
@GetMapping("/getOrderOfDay")
public AjaxResult getOrderOfDate(@RequestParam("staffId") Long staffId, @RequestParam("orderDate") Date orderDate) {
@ -87,10 +87,10 @@ public class ClientController extends BaseController {
* 日期2020年12月11日
* 作者陈智兴
*
* @param JSONObject staffId: 员工id
* param JSONObject staffId: 员工id
* orderType订餐类型
* demandDate 订餐用餐日期
* @return
* return
*/
@PostMapping("/PostOrder")
public AjaxResult postOrder(@RequestBody JSONObject params) {
@ -163,10 +163,10 @@ public class ClientController extends BaseController {
* 日期2020年12月11日
* 作者陈智兴
*
* @param staffId: 员工id
* param staffId: 员工id
* type订餐类型
* demandDate 订餐用餐日期
* @return
* return
*/
@PostMapping("/postStopOrder")
public AjaxResult postStopOrder(@RequestBody JSONObject params) {