|
@@ -2,6 +2,7 @@ package com.platform.yijia.controller;
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
import com.google.gson.Gson;
|
|
|
+import com.google.gson.GsonBuilder;
|
|
|
import com.platform.yijia.config.YiJiaRequest;
|
|
|
import com.platform.yijia.param.request.LoginBody;
|
|
|
import com.platform.yijia.pojo.*;
|
|
@@ -208,7 +209,7 @@ public class PosMachineController {
|
|
|
@RequestMapping (value = "/selectPosPayOrdersList", method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
public String selectPosPayOrdersList(@RequestBody PayOrder request){
|
|
|
- Gson gson =new Gson();
|
|
|
+ Gson gson =new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create();
|
|
|
//返回结果集
|
|
|
ResultData resultData = null;
|
|
|
if(request.getStationId() !=null){
|