Browse Source

fix:新增发票信息字段

master
tanzs 1 month ago
parent
commit
8fd138ba91
2 changed files with 8 additions and 0 deletions
  1. +4
    -0
      jeecg-module-demo/src/main/java/org/jeecg/modules/sysMiniapp/order/entity/AppOrder.java
  2. +4
    -0
      jeecg-module-demo/src/main/java/org/jeecg/modules/sysMiniapp/order/vo/AppOrderPage.java

+ 4
- 0
jeecg-module-demo/src/main/java/org/jeecg/modules/sysMiniapp/order/entity/AppOrder.java View File

@ -153,4 +153,8 @@ public class AppOrder implements Serializable {
@Excel(name = "支付凭证", width = 15)
@ApiModelProperty(value = "支付凭证")
private java.lang.String payVoucherUrl;
/**发票信息*/
@Excel(name = "发票信息", width = 15)
@ApiModelProperty(value = "发票信息")
private java.lang.String invoiceUrl;
}

+ 4
- 0
jeecg-module-demo/src/main/java/org/jeecg/modules/sysMiniapp/order/vo/AppOrderPage.java View File

@ -146,6 +146,10 @@ public class AppOrderPage {
@Excel(name = "支付凭证", width = 15)
@ApiModelProperty(value = "支付凭证")
private java.lang.String payVoucherUrl;
/**发票信息*/
@Excel(name = "发票信息", width = 15)
@ApiModelProperty(value = "发票信息")
private java.lang.String invoiceUrl;
@ExcelCollection(name="订单车辆信息")
@ApiModelProperty(value = "订单车辆信息")


Loading…
Cancel
Save