Browse Source

fix:原先的收款备注没有出现

ly 11 months ago
parent
commit
f37a7f8acf

+ 10 - 0
src/main/java/cn/ezhizao/project/business/collection/domain/BizCollectionDetail.java

@@ -123,6 +123,16 @@ public class BizCollectionDetail extends BaseEntity implements Serializable {
 
     @TableField(exist = false)
     private String inputRemark;
+    @Excel(sort = 18, name = "收款备注")
+    private String remark;
+
+    public String getRemark() {
+        return remark;
+    }
+
+    public void setRemark(String remark) {
+        this.remark = remark;
+    }
 
     @TableField(exist = false)
     @Excels({

+ 1 - 0
src/main/resources/mybatis/business/BizCollectionDetailMapper.xml

@@ -45,6 +45,7 @@
         t4.district,
         t4.belong_region,
         t4.remark as inputRemark,
+        t1.remark,
         t1.contract_id,
         t1.arrive_amount,
         t4.amount as amount,