Commit 67bfd79f authored by 徐俊's avatar 徐俊

xujun

parent 9773c480
......@@ -59,5 +59,8 @@ public class ComProjectUnitPayment extends BaseEntity {
/** 自筹资金(单位自筹资金) */
@ApiModelProperty(value = "自筹资金(单位自筹资金)", position = 3)
private BigDecimal selfAmount;
/** 总金额 */
@ApiModelProperty(value = "总金额", position = 3)
private BigDecimal totalAmount;
}
\ No newline at end of file
......@@ -62,4 +62,7 @@ public class ComProjectUnitPaymentDTO extends BaseDTO {
/** 自筹资金(单位自筹资金) */
@ApiModelProperty(value = "自筹资金(单位自筹资金)", position = 3)
private BigDecimal selfAmount;
/** 总金额 */
@ApiModelProperty(value = "总金额", position = 3)
private BigDecimal totalAmount;
}
\ No newline at end of file
......@@ -59,4 +59,7 @@ public class ComProjectUnitPaymentQueryVO extends PaginationVO{
/** 自筹资金(单位自筹资金) */
@ApiModelProperty(value = "自筹资金(单位自筹资金)", position = 3)
private BigDecimal selfAmount;
/** 总金额 */
@ApiModelProperty(value = "总金额", position = 3)
private BigDecimal totalAmount;
}
\ No newline at end of file
......@@ -5,7 +5,7 @@
<mapper namespace="com.yiboshi.science.dao.ComProjectUnitPaymentDAO">
<sql id="allColumns">
id, object_id, unit_name, country_name, social_code, unit_role, task_division, task_leader, Indirect_fee, fund_amount,
self_amount, created, updated
self_amount, total_amount, created, updated
</sql>
<select id="getListByObjectId" parameterType="java.lang.String" resultType="com.yiboshi.science.param.dto.ComProjectUnitPaymentDTO">
SELECT a.*, b.name as roleName
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment