master:下载excel排列序号改为从1开始
parent
529c3d6cf6
commit
4d45bfe75a
|
|
@ -96,7 +96,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
|
||||
<select id="selectExportList" resultType="com.ruoyi.xkt.dto.storeProductStock.StoreProdStockDownloadDTO">
|
||||
SELECT
|
||||
DENSE_RANK() OVER ( ORDER BY sps.create_time DESC ) AS orderNum,
|
||||
DENSE_RANK() OVER ( ORDER BY sps.create_time ) AS orderNum,
|
||||
sps.prod_art_num,
|
||||
sps.color_name,
|
||||
sps.size_30 AS size30Quantity,
|
||||
|
|
@ -131,7 +131,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
|
||||
<select id="selectAllStockList" resultType="com.ruoyi.xkt.dto.storeProductStock.StoreProdStockDownloadDTO">
|
||||
SELECT
|
||||
DENSE_RANK() OVER ( ORDER BY sps.create_time DESC ) AS orderNum,
|
||||
DENSE_RANK() OVER ( ORDER BY sps.create_time ) AS orderNum,
|
||||
sps.prod_art_num,
|
||||
sps.color_name,
|
||||
sps.size_30 AS size30Quantity,
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
|
||||
<select id="selectExportList" resultType="com.ruoyi.xkt.dto.storeProdStorage.StoreStorageDetailDownloadDTO">
|
||||
SELECT
|
||||
DENSE_RANK() OVER (ORDER BY sps.code, sps.create_time DESC) AS orderNum,
|
||||
DENSE_RANK() OVER (ORDER BY sps.code, sps.create_time) AS orderNum,
|
||||
sps.`code`,
|
||||
sf.fac_name,
|
||||
sps.create_time,
|
||||
|
|
@ -62,7 +62,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
|
||||
<select id="selectExportListVoucherDateBetween" resultType="com.ruoyi.xkt.dto.storeProdStorage.StoreStorageDetailDownloadDTO">
|
||||
SELECT
|
||||
DENSE_RANK() OVER (ORDER BY sps.code, sps.create_time DESC) AS orderNum,
|
||||
DENSE_RANK() OVER (ORDER BY sps.code, sps.create_time) AS orderNum,
|
||||
sps.`code`,
|
||||
sf.fac_name,
|
||||
sps.create_time,
|
||||
|
|
|
|||
Loading…
Reference in New Issue