Showing
4 changed files
with
12 additions
and
12 deletions
@@ -18,9 +18,9 @@ | @@ -18,9 +18,9 @@ | ||
18 | from price_trend_day | 18 | from price_trend_day |
19 | where product_id = #{productId, jdbcType=INTEGER} | 19 | where product_id = #{productId, jdbcType=INTEGER} |
20 | <if test="sizeId != null and sizeId !=''"> | 20 | <if test="sizeId != null and sizeId !=''"> |
21 | - AND size_id = #{sizeId.jdbcType=INTEGER} | 21 | + AND size_id = #{sizeId, jdbcType=INTEGER} |
22 | </if> | 22 | </if> |
23 | - AND create_time >= #{startTime.jdbcType=INTEGER} | ||
24 | - AND create_time < #{endTime.jdbcType=INTEGER} | 23 | + AND create_time >= #{startTime, jdbcType=INTEGER} |
24 | + AND create_time < #{endTime, jdbcType=INTEGER} | ||
25 | </select> | 25 | </select> |
26 | </mapper> | 26 | </mapper> |
@@ -19,9 +19,9 @@ | @@ -19,9 +19,9 @@ | ||
19 | from price_trend_half_year | 19 | from price_trend_half_year |
20 | where product_id = #{productId, jdbcType=INTEGER} | 20 | where product_id = #{productId, jdbcType=INTEGER} |
21 | <if test="sizeId != null and sizeId !=''"> | 21 | <if test="sizeId != null and sizeId !=''"> |
22 | - AND size_id = #{sizeId.jdbcType=INTEGER} | 22 | + AND size_id = #{sizeId, jdbcType=INTEGER} |
23 | </if> | 23 | </if> |
24 | - AND create_time >= #{startTime.jdbcType=INTEGER} | ||
25 | - AND create_time < #{endTime.jdbcType=INTEGER} | 24 | + AND create_time >= #{startTime, jdbcType=INTEGER} |
25 | + AND create_time < #{endTime, jdbcType=INTEGER} | ||
26 | </select> | 26 | </select> |
27 | </mapper> | 27 | </mapper> |
@@ -19,9 +19,9 @@ | @@ -19,9 +19,9 @@ | ||
19 | from price_trend_month | 19 | from price_trend_month |
20 | where product_id = #{productId, jdbcType=INTEGER} | 20 | where product_id = #{productId, jdbcType=INTEGER} |
21 | <if test="sizeId != null and sizeId !=''"> | 21 | <if test="sizeId != null and sizeId !=''"> |
22 | - AND size_id = #{sizeId.jdbcType=INTEGER} | 22 | + AND size_id = #{sizeId, jdbcType=INTEGER} |
23 | </if> | 23 | </if> |
24 | - AND create_time >= #{startTime.jdbcType=INTEGER} | ||
25 | - AND create_time < #{endTime.jdbcType=INTEGER} | 24 | + AND create_time >= #{startTime, jdbcType=INTEGER} |
25 | + AND create_time < #{endTime, jdbcType=INTEGER} | ||
26 | </select> | 26 | </select> |
27 | </mapper> | 27 | </mapper> |
@@ -19,9 +19,9 @@ | @@ -19,9 +19,9 @@ | ||
19 | from price_trend_sixty_day | 19 | from price_trend_sixty_day |
20 | where product_id = #{productId, jdbcType=INTEGER} | 20 | where product_id = #{productId, jdbcType=INTEGER} |
21 | <if test="sizeId != null and sizeId !=''"> | 21 | <if test="sizeId != null and sizeId !=''"> |
22 | - AND size_id = #{sizeId.jdbcType=INTEGER} | 22 | + AND size_id = #{sizeId, jdbcType=INTEGER} |
23 | </if> | 23 | </if> |
24 | - AND create_time >= #{startTime.jdbcType=INTEGER} | ||
25 | - AND create_time < #{endTime.jdbcType=INTEGER} | 24 | + AND create_time >= #{startTime, jdbcType=INTEGER} |
25 | + AND create_time < #{endTime, jdbcType=INTEGER} | ||
26 | </select> | 26 | </select> |
27 | </mapper> | 27 | </mapper> |
-
Please register or login to post a comment