fix
Hentua
2024-01-29 959bd76c3dd17ff7cb0b492c7568b8b54c09dee2
src/main/java/cc/mrbird/febs/mall/entity/MallOrderItem.java
@@ -1,6 +1,7 @@
package cc.mrbird.febs.mall.entity;
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@@ -17,6 +18,10 @@
    private Long orderId;
    private Long skuId;
    private String memberInviteId;
    private Long memberCouponId;
    private Long goodsId;
@@ -37,4 +42,17 @@
    private BigDecimal costPrice;
    private Integer isNormal;
    /**
     * 是否结清
     */
    private Integer hasSettle;
    //1:正常 2:退款中3:已退
    private Integer state;
    @TableField(exist = false)
    private long[] orderIdsStr;
    @TableField(exist = false)
    private String unit;
}