Compare commits

..

2 Commits

Author SHA1 Message Date
0f02a86820 1 2025-10-05 02:31:40 +08:00
fe622b9648 1 2025-10-05 02:25:01 +08:00
2 changed files with 3 additions and 1 deletions

View File

@@ -391,7 +391,7 @@ public class InstructionServiceImpl implements IInstructionService {
address.append(phone); address.append(phone);
System.out.println(address); System.out.println(address);
for (int i = 4; i < parts.length; i++) { for (int i = 4; i < parts.length; i++) {
address.append(parts[i]); address.append(parts[i]);F
} }
String jf = productWithJF.get(modelNumber); String jf = productWithJF.get(modelNumber);

View File

@@ -121,6 +121,8 @@
<if test="itemId != null and itemId != ''"> and item_id = #{itemId}</if> <if test="itemId != null and itemId != ''"> and item_id = #{itemId}</if>
<if test="callerItemId != null and callerItemId != ''"> and caller_item_id = #{callerItemId}</if> <if test="callerItemId != null and callerItemId != ''"> and caller_item_id = #{callerItemId}</if>
<if test="orderTag != null and orderTag != ''"> and order_tag = #{orderTag}</if> <if test="orderTag != null and orderTag != ''"> and order_tag = #{orderTag}</if>
<if test="params.beginTime != null"> and order_time &gt;= #{params.beginTime}</if>
<if test="params.endTime != null"> and order_time &lt;= #{params.endTime}</if>
</where> </where>
order by order_time desc order by order_time desc
</select> </select>