Merge remote-tracking branch 'origin/dev' into test
This commit is contained in:
@@ -27,7 +27,7 @@ public class AmountSplitRespDTO {
|
|||||||
private String elementCode;
|
private String elementCode;
|
||||||
|
|
||||||
@Schema(description = "占比")
|
@Schema(description = "占比")
|
||||||
private BigDecimal ratio;
|
private BigDecimal proportion;
|
||||||
|
|
||||||
@Schema(description = "合同id", example = "3781")
|
@Schema(description = "合同id", example = "3781")
|
||||||
private Long contractId;
|
private Long contractId;
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ public class AmountDismantlePageReqVO extends PageParam {
|
|||||||
private String elementCode;
|
private String elementCode;
|
||||||
|
|
||||||
@Schema(description = "占比")
|
@Schema(description = "占比")
|
||||||
private BigDecimal ratio;
|
private BigDecimal proportion;
|
||||||
|
|
||||||
@Schema(description = "合同id", example = "3781")
|
@Schema(description = "合同id", example = "3781")
|
||||||
private Long contractId;
|
private Long contractId;
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ public class AmountDismantleRespVO {
|
|||||||
|
|
||||||
@Schema(description = "占比")
|
@Schema(description = "占比")
|
||||||
@ExcelProperty("占比")
|
@ExcelProperty("占比")
|
||||||
private BigDecimal ratio;
|
private BigDecimal proportion;
|
||||||
|
|
||||||
@Schema(description = "合同id", example = "3781")
|
@Schema(description = "合同id", example = "3781")
|
||||||
@ExcelProperty("合同id")
|
@ExcelProperty("合同id")
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ public class AmountDismantleSaveReqVO {
|
|||||||
private String elementCode;
|
private String elementCode;
|
||||||
|
|
||||||
@Schema(description = "占比")
|
@Schema(description = "占比")
|
||||||
private BigDecimal ratio;
|
private BigDecimal proportion;
|
||||||
|
|
||||||
@Schema(description = "合同id", example = "3781")
|
@Schema(description = "合同id", example = "3781")
|
||||||
private Long contractId;
|
private Long contractId;
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ public class AmountDismantleDO extends BusinessBaseDO {
|
|||||||
* 占比
|
* 占比
|
||||||
*/
|
*/
|
||||||
@TableField("RTIO")
|
@TableField("RTIO")
|
||||||
private BigDecimal ratio;
|
private BigDecimal proportion;
|
||||||
/**
|
/**
|
||||||
* 合同id
|
* 合同id
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ public interface AmountDismantleMapper extends BaseMapperX<AmountDismantleDO> {
|
|||||||
.eqIfPresent(AmountDismantleDO::getElementAbbreviation, reqVO.getElementAbbreviation())
|
.eqIfPresent(AmountDismantleDO::getElementAbbreviation, reqVO.getElementAbbreviation())
|
||||||
.likeIfPresent(AmountDismantleDO::getElementName, reqVO.getElementName())
|
.likeIfPresent(AmountDismantleDO::getElementName, reqVO.getElementName())
|
||||||
.eqIfPresent(AmountDismantleDO::getElementCode, reqVO.getElementCode())
|
.eqIfPresent(AmountDismantleDO::getElementCode, reqVO.getElementCode())
|
||||||
.eqIfPresent(AmountDismantleDO::getRatio, reqVO.getRatio())
|
.eqIfPresent(AmountDismantleDO::getProportion, reqVO.getProportion())
|
||||||
.eqIfPresent(AmountDismantleDO::getContractId, reqVO.getContractId())
|
.eqIfPresent(AmountDismantleDO::getContractId, reqVO.getContractId())
|
||||||
.betweenIfPresent(AmountDismantleDO::getCreateTime, reqVO.getCreateTime())
|
.betweenIfPresent(AmountDismantleDO::getCreateTime, reqVO.getCreateTime())
|
||||||
.orderByDesc(AmountDismantleDO::getId));
|
.orderByDesc(AmountDismantleDO::getId));
|
||||||
|
|||||||
Reference in New Issue
Block a user