提交 1c4962c0 authored 作者: aiqingguo's avatar aiqingguo

司机排名

上级 d0c64584
...@@ -48,14 +48,14 @@ public class IntegralTruckVO { ...@@ -48,14 +48,14 @@ public class IntegralTruckVO {
private String createTime; private String createTime;
@ApiModelProperty(value = "运单完成积分", example = "1") @ApiModelProperty(value = "运单完成积分", example = "1")
private Integer orderChildCompleteIntegral; private Integer orderChildCompleteIntegral=0;
@ApiModelProperty(value = "平台补偿积分", example = "1") @ApiModelProperty(value = "平台补偿积分", example = "1")
private Integer platformCompensationIntegral; private Integer platformCompensationIntegral=0;
@ApiModelProperty(value = "运单取消积分", example = "1") @ApiModelProperty(value = "运单取消积分", example = "1")
private Integer orderChildCancelIntegral; private Integer orderChildCancelIntegral=0;
@ApiModelProperty(value = "运单超时积分", example = "1") @ApiModelProperty(value = "运单超时积分", example = "1")
private Integer orderChildTimeoutIntegral; private Integer orderChildTimeoutIntegral=0;
@ApiModelProperty(value = "信息上报积分", example = "1") @ApiModelProperty(value = "信息上报积分", example = "1")
private Integer reportIntegral; private Integer reportIntegral=0;
} }
\ No newline at end of file
...@@ -63,7 +63,7 @@ public class IntegralRecordDaoImpl extends BaseDaoImpl<IntegraRecordMapper, Inte ...@@ -63,7 +63,7 @@ public class IntegralRecordDaoImpl extends BaseDaoImpl<IntegraRecordMapper, Inte
@Override @Override
public List<IntegralRecord> listByStatisticsDateAndTruckNoList(String statisticsDate, List<String> truckNoList) { public List<IntegralRecord> listByStatisticsDateAndTruckNoList(String statisticsDate, List<String> truckNoList) {
return list(lQrWrapper() return list(lQrWrapper()
.eq(IntegralRecord::getStatisticsId, statisticsDate) .eq(IntegralRecord::getStatisticsDate, statisticsDate)
.in(IntegralRecord::getTruckNo, truckNoList) .in(IntegralRecord::getTruckNo, truckNoList)
); );
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论