Pārlūkot izejas kodu

优化律师端订单列表接口

zhangchen 3 nedēļas atpakaļ
vecāks
revīzija
9fd57e3008

+ 5 - 0
alien-entity/src/main/java/shop/alien/entity/store/vo/LawyerConsultationOrderVO.java

@@ -195,5 +195,10 @@ public class LawyerConsultationOrderVO implements Serializable {
     @ApiModelProperty(value = "律师接单状态  0接单  1拒绝接单")
     @TableField("accept_orders_status")
     private  Integer acceptOrdersStatus;
+
+    @ApiModelProperty(value = "申请退款状态,0-未申请,1-已申请,2-律师已拒绝,3-律师已同意")
+    @TableField("apply_refund_status")
+    private  String applyRefundStatus;
+
 }
 

+ 1 - 0
alien-entity/src/main/java/shop/alien/mapper/LawyerConsultationOrderMapper.java

@@ -309,6 +309,7 @@ public interface LawyerConsultationOrderMapper extends BaseMapper<LawyerConsulta
             "        lco.created_time,\n" +
             "        lco.alipay_no,\n" +
             "        lco.order_str,\n" +
+            "        lco.apply_refund_status,\n" +
             "        lu.name AS lawyer_name,\n" +
             "        lu.phone AS lawyer_phone,\n" +
             "        lu.email AS lawyer_email,\n" +