fix
Helius
2022-06-28 65ab713ad7bbdf978021686059c19bc6aa527363
src/main/java/cc/mrbird/febs/mall/entity/MallOrderInfo.java
@@ -71,4 +71,20 @@
    private List<MallOrderItem> items;
    private String payImage;
    private String payTradeNo;
    /**
     * 订单类型 1-普通订单 2-积分订单
     */
    private Integer orderType;
    private BigDecimal carriage;
    private Integer commentState;
    /**
     * 评价状态 1:待评价 2:已评价
     */
    public static final Integer COMMENT_STATE_NO = 1;
    public static final Integer COMMENT_STATE_YES = 2;
}