1
This commit is contained in:
@@ -229,4 +229,12 @@ public class OrderRows extends BaseEntity
|
||||
@Excel(name = "订单标签")
|
||||
private String orderTag;
|
||||
|
||||
/** 订单时间范围 - 开始时间 */
|
||||
@Transient
|
||||
private Date beginTime;
|
||||
|
||||
/** 订单时间范围 - 结束时间 */
|
||||
@Transient
|
||||
private Date endTime;
|
||||
|
||||
}
|
||||
|
||||
@@ -391,7 +391,7 @@ public class InstructionServiceImpl implements IInstructionService {
|
||||
address.append(phone);
|
||||
System.out.println(address);
|
||||
for (int i = 4; i < parts.length; i++) {
|
||||
address.append(parts[i]);
|
||||
address.append(parts[i]);F
|
||||
}
|
||||
String jf = productWithJF.get(modelNumber);
|
||||
|
||||
|
||||
@@ -121,6 +121,8 @@
|
||||
<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="orderTag != null and orderTag != ''"> and order_tag = #{orderTag}</if>
|
||||
<if test="beginTime != null"> and order_time >= #{beginTime}</if>
|
||||
<if test="endTime != null"> and order_time <= #{endTime}</if>
|
||||
</where>
|
||||
order by order_time desc
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user