Commit 0d724cd0 by 陶光胜

小程序二维码修改

parent 531536e7
......@@ -3,6 +3,8 @@ package com.gic.enterprise.web.vo;
import com.gic.commons.util.DateUtil;
import com.gic.enterprise.constant.BuyTypeEnum;
import com.gic.enterprise.constant.PayTypeEnum;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import java.io.Serializable;
import java.text.ParseException;
......@@ -18,6 +20,7 @@ import java.util.Date;
*/
public class BillListVO implements Serializable{
private static final long serialVersionUID = -3737832047382825129L;
private static Logger logger = LogManager.getLogger(BillListVO.class);
/**
* 支付流水号
......@@ -102,7 +105,7 @@ public class BillListVO implements Serializable{
try {
return format.parse(timeEnd);
} catch (ParseException e) {
e.printStackTrace();
logger.warn("e", e);
}
return null;
}
......
......@@ -85,7 +85,7 @@ public class PushMessageController {
response = this.pushMessageApiService.pagePushMessage(search, pushStatus,
StringUtils.isBlank(startTime) ? null : simpleDateFormat.parse(startTime+" 00:00:00"), StringUtils.isBlank(endTime) ? null : simpleDateFormat.parse(endTime+" 23:59:59"), pageQO.getCurrentPage(), pageQO.getPageSize(), classifyId);
} catch (ParseException e) {
e.printStackTrace();
log.warn("e", e);
}
return RestResponse.success(response.getResult());
}
......
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