报表导出

This commit is contained in:
2026-05-25 22:33:27 +08:00
parent 62722a9ce7
commit c0fed06eaa
9 changed files with 825 additions and 9 deletions

View File

@@ -78,13 +78,16 @@ public class LbDailyUserTradeReport implements Serializable {
@Schema(description = "插入时间")
@TableField("created_at")
@JsonFlexibleLocalDateTime
private LocalDateTime createdAt;
@Schema(description = "修改时间")
@TableField("updated_at")
@JsonFlexibleLocalDateTime
private LocalDateTime updatedAt;
@Schema(description = "报表日期")
@TableField("report_date")
@JsonFlexibleLocalDateTime
private LocalDateTime reportDate;
}

View File

@@ -52,6 +52,14 @@ public class LbOrderRow implements Serializable {
@Schema(description = "买家 id")
private Long buyerId;
@TableField("buyer_name")
@Schema(description = "买家姓名")
private String buyerName;
@TableField("buyer_phone")
@Schema(description = "买家电话")
private String buyerPhone;
@TableField("order_sn")
@Schema(description = "订单号")
private String orderSn;

View File

@@ -83,4 +83,8 @@ public class LbPurchaseApply implements Serializable {
@TableField(exist = false)
@Schema(description = "推荐人用户信息(非数据库字段)")
private LbUser referrerUser;
@TableField(exist = false)
@Schema(description = "最近一次成交订单非数据库字段apply_phone 匹配 buyer_phone")
private LbOrderRow latestTradeOrder;
}