导出同事特权,增加和修正表字段
This commit is contained in:
@@ -9,6 +9,7 @@ import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@@ -31,6 +32,10 @@ public class LbOrderRow implements Serializable {
|
||||
@Schema(description = "租户ID")
|
||||
private String tenantId;
|
||||
|
||||
@TableField("data_type")
|
||||
@Schema(description = "数据类型")
|
||||
private String dataType;
|
||||
|
||||
@TableField("seller_id")
|
||||
@Schema(description = "卖家 id")
|
||||
private Long sellerId;
|
||||
@@ -44,8 +49,8 @@ public class LbOrderRow implements Serializable {
|
||||
private String orderSn;
|
||||
|
||||
@TableField("total_money")
|
||||
@Schema(description = "总金额(接口为字符串)")
|
||||
private String totalMoney;
|
||||
@Schema(description = "总金额")
|
||||
private BigDecimal totalMoney;
|
||||
|
||||
@TableField("pay_time")
|
||||
@Schema(description = "支付时间(原样字符串)")
|
||||
@@ -110,4 +115,16 @@ public class LbOrderRow implements Serializable {
|
||||
@TableField("updated_at")
|
||||
@Schema(description = "更新时间")
|
||||
private String updatedAt;
|
||||
|
||||
@TableField("today_total_money_sum")
|
||||
@Schema(description = "汇总后的总金额")
|
||||
private BigDecimal todayTotalMoneySum;
|
||||
|
||||
@TableField("today_unresell_count")
|
||||
@Schema(description = "当天没有寄卖的单数总和")
|
||||
private Integer todayUnresellCount;
|
||||
|
||||
@TableField("today_order_count")
|
||||
@Schema(description = "当天交易单数")
|
||||
private Integer todayOrderCount;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user