|
|
@ -4,14 +4,18 @@ import cn.hutool.core.bean.BeanUtil; |
|
|
|
import com.air.land.entity.AuctionRecord; |
|
|
|
import com.air.land.entity.AuctionRecord; |
|
|
|
import com.air.land.service.AuctionRecordService; |
|
|
|
import com.air.land.service.AuctionRecordService; |
|
|
|
import com.air.land.vo.AuctionRecordVo; |
|
|
|
import com.air.land.vo.AuctionRecordVo; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
import com.cinderella.framework.common.core.util.R; |
|
|
|
import com.cinderella.framework.common.core.util.R; |
|
|
|
|
|
|
|
import com.cinderella.framework.common.data.mybatis.QueryPage; |
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
import org.springframework.validation.annotation.Validated; |
|
|
|
import org.springframework.validation.annotation.Validated; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
|
|
|
|
import sun.jvm.hotspot.debugger.Page; |
|
|
|
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
|
@ -24,8 +28,8 @@ import java.util.List; |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@RestController |
|
|
|
@RestController |
|
|
|
@AllArgsConstructor |
|
|
|
@AllArgsConstructor |
|
|
|
@RequestMapping("/auctionrecord") |
|
|
|
@RequestMapping("/auction_record") |
|
|
|
@Api(value = "auctionrecord", tags = "参拍记录表管理") |
|
|
|
@Api(value = "auction_record", tags = "参拍记录表管理") |
|
|
|
public class AuctionRecordController { |
|
|
|
public class AuctionRecordController { |
|
|
|
|
|
|
|
|
|
|
|
private final AuctionRecordService auctionRecordService; |
|
|
|
private final AuctionRecordService auctionRecordService; |
|
|
@ -37,12 +41,15 @@ public class AuctionRecordController { |
|
|
|
* @return |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@ApiOperation(value = "查询参拍记录列表", notes = "查询参拍记录列表") |
|
|
|
@ApiOperation(value = "查询参拍记录列表", notes = "查询参拍记录列表") |
|
|
|
@GetMapping("/list/{landListedId}") |
|
|
|
@GetMapping("/list") |
|
|
|
public R<List<AuctionRecord>> getAuctionRecordPage(@PathVariable Long landListedId) { |
|
|
|
public R<IPage<AuctionRecord>> getAuctionRecordPage(QueryPage page, @RequestParam(required = false) Long landListedId) { |
|
|
|
List<AuctionRecord> list = auctionRecordService.list(Wrappers.<AuctionRecord>query().lambda() |
|
|
|
LambdaQueryWrapper<AuctionRecord> lambda = Wrappers.<AuctionRecord>query().lambda(); |
|
|
|
.eq(AuctionRecord::getLandListedId, landListedId) |
|
|
|
if (landListedId != null) { |
|
|
|
.orderByDesc(AuctionRecord::getUpdateDate)); |
|
|
|
lambda.eq(AuctionRecord::getLandListedId, landListedId); |
|
|
|
return R.ok(list, "查询成功"); |
|
|
|
} |
|
|
|
|
|
|
|
IPage<AuctionRecord> recordPage = auctionRecordService.page(page.toPage(), |
|
|
|
|
|
|
|
lambda.orderByDesc(AuctionRecord::getUpdateDate)); |
|
|
|
|
|
|
|
return R.ok(recordPage, "查询成功"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|