Commit 301af706 authored by 朱晨阳's avatar 朱晨阳

Merge remote-tracking branch 'origin/developer_bw' into developer_bw

parents 0a13aedb ecfc0041
...@@ -60,4 +60,7 @@ public class FinancingInfoDto extends BaseDto { ...@@ -60,4 +60,7 @@ public class FinancingInfoDto extends BaseDto {
@ApiModelProperty(value = "附件") @ApiModelProperty(value = "附件")
private List<Object> files; private List<Object> files;
@ApiModelProperty(value = "单价")
private String unitPrice;
} }
...@@ -74,5 +74,9 @@ public class FinancingInfo extends BaseEntity { ...@@ -74,5 +74,9 @@ public class FinancingInfo extends BaseEntity {
*/ */
@TableField("status") @TableField("status")
private String status; private String status;
/**
* 单价
*/
@TableField("unit_price")
private String unitPrice;
} }
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