DESKTOP-71BH0QO\L、ming
2021-04-17 f721ee13dc5f95f607bb25b09f73cae6a7123ed9
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopOrderDO.java
@@ -117,6 +117,16 @@
    private String logisticsNo;
    /**
     * 订单备注
     */
    private String remark;
    /**
     * 发货时间
     */
    private Date deliveryTime;
    /**
     * 下单时间
     */
    @TableField(fill = FieldFill.INSERT)
@@ -128,6 +138,57 @@
    @TableField(fill = FieldFill.UPDATE)
    private Date updateAt;
    /**
     * 订单状态(1.待付款 2.代发货 3.待收货 4.待评价 5.已完成 6.已取消)
     */
    public interface status{
        int dfk = 1;
        int dfh = 2;
        int dsh = 3;
        int dpj = 4;
        int ywc = 5;
        int yqx = 6;
    }
    /**
     * 支付状态(1.未支付 2.已支付)
     */
    public interface payStatus{
        int no = 1;
        int yes = 2;
    }
    /**
     * 删除状态(1.未删除 2.已删除)
     */
    public interface deleteStatus{
        int no = 1;
        int yes = 2;
    }
    /**
     * 支付方式(1.微信支付)
     */
    public interface payType{
        int wx = 1;
    }
    /**
     * 配送方式(1.商家配送  2.快递物流)
     */
    public interface deliveryType{
        int store = 1;
        int express = 2;
    }
    /**
     * 订单发货状态(1.未发货  2.已发货)
     */
    public interface deliveryStatus{
        int no = 1;
        int yes = 2;
    }
    @Override
    public String toString() {
        return "ComShopOrderDO{" +