소스 검색

问题处理

yzc 1 년 전
부모
커밋
1d8b52d11c
1개의 변경된 파일1개의 추가작업 그리고 15개의 파일을 삭제
  1. 1 15
      hx-wms/src/main/resources/mapper/stock/StockWaitDetailsMapper.xml

+ 1 - 15
hx-wms/src/main/resources/mapper/stock/StockWaitDetailsMapper.xml

@@ -24,23 +24,9 @@
     </select>
     <select id="getList" resultType="com.fjhx.wms.entity.stock.vo.StockWaitDetailsVo">
         SELECT
-            swd.id,
-            sw.business_code,
-            sw.business_id,
-            sw.business_type,
-            sw.`status`,
-            swd.stock_wait_id,
-            swd.product_id,
-            swd.quantity,
-            swd.receipt_quantity,
-            swd.create_user,
-            swd.create_time,
-            swd.update_user,
-            swd.update_time,
-            swd.victoriatourist_json
+            swd.*
         FROM
             stock_wait_details swd
-                JOIN stock_wait sw ON swd.stock_wait_id = sw.id
                 LEFT JOIN bytesailing_item.product_info pi ON swd.product_id = pi.id
             ${ew.customSqlSegment}
     </select>