|
@@ -167,7 +167,7 @@ public class GoodsDonQuestionController {
|
|
|
public Result<List<CustomerConsultationStatisticsDataView>> getConsultationStatisticsData(String startTime, String endTime) {
|
|
public Result<List<CustomerConsultationStatisticsDataView>> getConsultationStatisticsData(String startTime, String endTime) {
|
|
|
String timeSql = StrUtil.EMPTY;
|
|
String timeSql = StrUtil.EMPTY;
|
|
|
if (startTime != null && endTime != null) {
|
|
if (startTime != null && endTime != null) {
|
|
|
- timeSql = String.format(" ccr.created_time >= '%s' and ccr.created_time < '$s'", startTime, endTime);
|
|
|
|
|
|
|
+ timeSql = String.format(" ccr.created_time >= '%s' and ccr.created_time < '%s'", startTime, endTime);
|
|
|
}
|
|
}
|
|
|
MapBuilder builder = MapUtils.flatBuilder(request.getParameterMap());
|
|
MapBuilder builder = MapUtils.flatBuilder(request.getParameterMap());
|
|
|
if (StrUtil.isNotBlank(timeSql)) {
|
|
if (StrUtil.isNotBlank(timeSql)) {
|