Browse Source

项目暂停列表开发

anderx 3 years ago
parent
commit
0224d43ecf

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

@@ -1969,7 +1969,7 @@
   </select>
 
   <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,
+    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 ,
     tom.service_type serviceType , b.receiver_name receiverName ,b.status ,b.commodity_price commodityPrice ,a.reason
     from task_sopt a left join t_order_task b on a.tid=b.id

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

@@ -31,6 +31,24 @@ public class OutselectProjectSotp {
     private String commodityPrice;
     @Excel(name = "原因")
     private String reason;
+    private Integer sotpType;
+    private Integer sotpStatus;
+
+    public Integer getSotpStatus() {
+        return sotpStatus;
+    }
+
+    public void setSotpStatus(Integer sotpStatus) {
+        this.sotpStatus = sotpStatus;
+    }
+
+    public Integer getSotpType() {
+        return sotpType;
+    }
+
+    public void setSotpType(Integer sotpType) {
+        this.sotpType = sotpType;
+    }
 
     public String getCreateTimes() {
         return createTimes;