Browse Source

变更接口修改

Signed-off-by: anderx <312518615@qq.com>
anderx 6 years ago
parent
commit
22e04c92d8

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

@@ -495,6 +495,6 @@
   	  b.set_up_amount setUpAmount, a.effective_count effectiveCount, a.aid, a.create_time createTime,a.type,a.ctid,
   	  ifnull(b.commodity_name,c.commodity_name) commodityName,a.money,a.status, a.appropriation_ratio appropriationRatio
   	  from t_change_dun a left join t_order_task b on a.tid=b.id left join t_change_task c on a.ctid=c.id
-    	where a.cid= #{id}
+    	where a.cid= #{id} order by a.id
   </select>
 </mapper>

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

@@ -415,6 +415,6 @@
   a.task_comment as taskComment ,a.commodity_price as commodityPrice
     from t_change_task a left join business_project i on a.commodity_id=i.id
   	left join business_category c on i.cid=c.id 
-  	where a.cid= #{id}
+  	where a.cid= #{id} order by a.id
   </select>
 </mapper>