Przeglądaj źródła

修改列表参数

anderx 3 lat temu
rodzic
commit
f95ee550b0

+ 1 - 1
src/main/java/com/goafanti/common/mapper/TOrderTaskMapper.xml

@@ -1971,7 +1971,7 @@
   <select id="selectProjectSotpList" resultType="com.goafanti.order.bo.OutselectProjectSotp">
     select DATE_FORMAT(a.create_time,'%Y-%m-%d %H:%i:%S') createTimes,dg.name province,c.contract_no contractNo, a.type sotpType,a.status sotpStatus,
     c.order_no orderNo ,tom.buyer_name userName,b.cname ,b.commodity_name projectName,b.commodity_quantity commodityQuantity ,a.annex_url annexUrl,
-    tom.service_type serviceType , b.receiver_name receiverName ,b.status ,b.commodity_price commodityPrice ,a.reason
+    tom.service_type serviceType , b.receiver_name receiverName ,b.status ,b.commodity_price commodityPrice ,a.reason,a.id
     from task_sopt a left join t_order_task b on a.tid=b.id
     left join t_order_new  c on b.order_no =c.order_no
     left join t_order_mid tom on c.order_no =tom.order_no

+ 9 - 0
src/main/java/com/goafanti/order/bo/OutselectProjectSotp.java

@@ -3,6 +3,7 @@ package com.goafanti.order.bo;
 
 public class OutselectProjectSotp {
 
+    private Long id;
     private String createTimes;
     private String province;
     private String contractNo;
@@ -20,6 +21,14 @@ public class OutselectProjectSotp {
     private Integer sotpType;
     private Integer sotpStatus;
 
+    public Long getId() {
+        return id;
+    }
+
+    public void setId(Long id) {
+        this.id = id;
+    }
+
     public String getAnnexUrl() {
         return annexUrl;
     }