视频圈
This commit is contained in:
parent
c5880bf619
commit
3e015ac614
|
@ -38,12 +38,13 @@ public class AppShipinquanController {
|
||||||
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
@ApiOperation("获取视频数据列表")
|
@ApiOperation("获取视频数据列表")
|
||||||
public Result list(Integer page, Integer limit, String userId,String gzrId,String longitude,String latitude){
|
public Result list(Integer page, Integer limit, Long createBy,String userId,String gzrId,String longitude,String latitude){
|
||||||
if(page==null){
|
if(page==null){
|
||||||
page=1;
|
page=1;
|
||||||
limit=10;
|
limit=10;
|
||||||
}
|
}
|
||||||
BlShipinquan entity = new BlShipinquan();
|
BlShipinquan entity = new BlShipinquan();
|
||||||
|
entity.setCreateBy(createBy);
|
||||||
entity.setUserId(userId);
|
entity.setUserId(userId);
|
||||||
entity.setLongitude(longitude);
|
entity.setLongitude(longitude);
|
||||||
entity.setLatitude(latitude);
|
entity.setLatitude(latitude);
|
||||||
|
|
|
@ -716,7 +716,7 @@
|
||||||
and o.status in (2,3,4,5,6,7,8,9)
|
and o.status in (2,3,4,5,6,7,8,9)
|
||||||
</if>
|
</if>
|
||||||
<if test="type==2">
|
<if test="type==2">
|
||||||
and o.status in (2,4,6,7,8,9)
|
and o.status in (2,6,7,8,9)
|
||||||
and o.pay_time is not null
|
and o.pay_time is not null
|
||||||
<if test="startTime!=null and startTime!=''">
|
<if test="startTime!=null and startTime!=''">
|
||||||
and date_format(o.serve_time,'%Y-%m-%d') >= date_format(#{startTime},'%Y-%m-%d')
|
and date_format(o.serve_time,'%Y-%m-%d') >= date_format(#{startTime},'%Y-%m-%d')
|
||||||
|
|
Loading…
Reference in New Issue