package com.mzl.flower.entity.payment; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.mzl.flower.base.BaseEntity; import lombok.Data; import java.math.BigDecimal; import java.time.LocalDate; import java.time.LocalDateTime; @Data @TableName("t_order") public class Order extends BaseEntity { @TableField("order_no") private String orderNo;//单号 @TableField("flower_amount") private BigDecimal flowerAmount;//商品金额(会员价) @TableField("packing_fee") private BigDecimal packingFee;//打包费 @TableField("transport_fee") private BigDecimal transportFee;//运费 @TableField("total_amount") private BigDecimal totalAmount;//订单金额 @TableField("status") private String status;//状态(ORDER_STATUS) @TableField("status_backend") private String statusBackend;//状态(ORDER_STATUS_BACKEND) @TableField("payment_amount") private BigDecimal paymentAmount;//支付金额 @TableField("payment_time") private LocalDateTime paymentTime;//支付时间 @TableField("payment_tr_id") private String paymentTrId;//支付单号 @TableField("customer") private String customer;//收货人 @TableField("customer_tel") private String customerTel;//收货人手机号码 @TableField("customer_province") private String customerProvince; @TableField("customer_city") private String customerCity; @TableField("customer_region") private String customerRegion; @TableField("customer_address") private String customerAddress;//收货地址 @TableField("delivery_name") private String deliveryName;//快递名称 @TableField("delivery_no") private String deliveryNo;//快递单号 @TableField("warehouse_id") private Long warehouseId;//仓库id @TableField("warehouse_name") private String warehouseName;//仓库名称 @TableField("warehouse_location_id") private Long warehouseLocationId;//库位id @TableField("warehouse_location_code") private String warehouseLocationCode;//库位名称 @TableField("warehouse_time") private LocalDateTime warehouseTime;//库位分配时间 @TableField("partner_id") private Long partnerId;//合伙人id @TableField("partner_name") private String partnerName;//合伙人名称 @TableField("special_needs") private String specialNeeds;//特殊需求 @TableField("remarks") private String remarks;//留言 @TableField("evaluate") private String evaluate;//评价 @TableField("cancel_time") private LocalDateTime cancelTime;//取消时间 @TableField("evaluate_time") private LocalDateTime evaluateTime;//评价时间 @TableField("refund_no") private String refundNo;//退款单号 @TableField("refund_amount") private BigDecimal refundAmount;//退款金额 @TableField("refund_time") private LocalDateTime refundTime;//退款时间 @TableField("transfer_id") private String transferId;//降级打款记录id @TableField("receive_time") private LocalDateTime receiveTime;//收货时间 @TableField("complete_time") private LocalDateTime completeTime;//完成时间 @TableField("transfer_time") private LocalDateTime transferTime;//转账时间 @TableField("pay_openid") private String payOpenid;//微信付款openid @TableField("bill_id") private String billId; @TableField("wx_delivery_good") private Boolean wxDeliveryGood;// 微信发货成功状态 @TableField("wx_delivery_msg") private String wxDeliveryMsg;// 微信发货返回消息 @TableField("member_coupon_id") private String memberCouponId;//用户优惠券id @TableField("member_coupon_code") private String memberCouponCode;//优惠券编码 @TableField("member_coupon_name") private String memberCouponName;//优惠券名称 @TableField("member_coupon_amount") private BigDecimal memberCouponAmount;//优惠券金额 @TableField("member_id") private Long memberId;//会员等级id @TableField("member_name") private String memberName;//会员等级名称 @TableField("member_discount_type") private String memberDiscountType;//折扣类型(discount_type) @TableField("member_discount_ratio") private BigDecimal memberDiscountRatio;//会员折扣 @TableField("member_discount_amount") private BigDecimal memberDiscountAmount;//优惠金额(每扎) @TableField("payment_date_sta") private LocalDate paymentDateSta;//支付日期 @TableField("create_date_sta") private LocalDate createDateSta;//创建日期 @TableField("logistics_company_code") private String logisticsCompanyCode;//快递号 }