Commit 31456ede authored by Allen Chen's avatar Allen Chen

修改Bug

parent fbd96132
......@@ -35,7 +35,7 @@ public interface StorageMapper extends BaseMapper<StorageEntity> {
@Select("SELECT `code` FROM `storage` WHERE `mailNo` = #{mailNo}")
StorageResponse storageSelect(@Param("mailNo") String mailNo);
@Select("SELECT `mailNo`, `code` , `place` FROM `storage` WHERE `logisticsOrderCode` = #{logisticsOrderCode} ")
@Select("SELECT a.`mailNo`, a.`code` , a.`place` FROM `storage` a, `unpack_mail_detail` b WHERE b.`orderCode` = #{logisticsOrderCode} AND b.`mailNo` = a.`mailNo`")
List<StorageListResponse> storageList(@Param("logisticsOrderCode") String logisticsOrderCode);
@Delete("DELETE FROM `storage` WHERE `mailNo` IN ${ids}")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment