投标保证金缴纳
This commit is contained in:
@ -50,7 +50,7 @@ public class XzdBidDepositPayment extends BaseEntity {
|
|||||||
/**
|
/**
|
||||||
* 工程造价(万元)
|
* 工程造价(万元)
|
||||||
*/
|
*/
|
||||||
private Long projectCost;
|
private BigDecimal projectCost;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 经营模式
|
* 经营模式
|
||||||
@ -60,7 +60,7 @@ public class XzdBidDepositPayment extends BaseEntity {
|
|||||||
/**
|
/**
|
||||||
* 保证金金额
|
* 保证金金额
|
||||||
*/
|
*/
|
||||||
private Long depositAmount;
|
private BigDecimal depositAmount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 保证金金额大写
|
* 保证金金额大写
|
||||||
|
|||||||
@ -50,7 +50,7 @@ public class XzdBidDepositPaymentBo extends BaseEntity {
|
|||||||
/**
|
/**
|
||||||
* 工程造价(万元)
|
* 工程造价(万元)
|
||||||
*/
|
*/
|
||||||
private Long projectCost;
|
private BigDecimal projectCost;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 经营模式
|
* 经营模式
|
||||||
@ -61,7 +61,7 @@ public class XzdBidDepositPaymentBo extends BaseEntity {
|
|||||||
* 保证金金额
|
* 保证金金额
|
||||||
*/
|
*/
|
||||||
@NotNull(message = "保证金金额不能为空", groups = { AddGroup.class, EditGroup.class })
|
@NotNull(message = "保证金金额不能为空", groups = { AddGroup.class, EditGroup.class })
|
||||||
private Long depositAmount;
|
private BigDecimal depositAmount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 保证金金额大写
|
* 保证金金额大写
|
||||||
|
|||||||
@ -65,7 +65,7 @@ public class XzdBidDepositPaymentVo implements Serializable {
|
|||||||
* 工程造价(万元)
|
* 工程造价(万元)
|
||||||
*/
|
*/
|
||||||
@ExcelProperty(value = "工程造价(万元)")
|
@ExcelProperty(value = "工程造价(万元)")
|
||||||
private Long projectCost;
|
private BigDecimal projectCost;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 经营模式
|
* 经营模式
|
||||||
@ -77,7 +77,7 @@ public class XzdBidDepositPaymentVo implements Serializable {
|
|||||||
* 保证金金额
|
* 保证金金额
|
||||||
*/
|
*/
|
||||||
@ExcelProperty(value = "保证金金额")
|
@ExcelProperty(value = "保证金金额")
|
||||||
private Long depositAmount;
|
private BigDecimal depositAmount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 保证金金额大写
|
* 保证金金额大写
|
||||||
|
|||||||
@ -100,6 +100,7 @@ public class XzdBidDepositPaymentServiceImpl extends ServiceImpl<XzdBidDepositPa
|
|||||||
public TableDataInfo<XzdBidDepositPaymentVo> queryPageList(XzdBidDepositPaymentBo bo, PageQuery pageQuery) {
|
public TableDataInfo<XzdBidDepositPaymentVo> queryPageList(XzdBidDepositPaymentBo bo, PageQuery pageQuery) {
|
||||||
LambdaQueryWrapper<XzdBidDepositPayment> lqw = buildQueryWrapper(bo);
|
LambdaQueryWrapper<XzdBidDepositPayment> lqw = buildQueryWrapper(bo);
|
||||||
Page<XzdBidDepositPaymentVo> result = baseMapper.selectVoPage(pageQuery.build(), lqw);
|
Page<XzdBidDepositPaymentVo> result = baseMapper.selectVoPage(pageQuery.build(), lqw);
|
||||||
|
result.getRecords().forEach(this::saveName);
|
||||||
return TableDataInfo.build(result);
|
return TableDataInfo.build(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user