Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
6a66e48eab
|
|
@ -59,7 +59,7 @@ public class PurchaseQueryDto {
|
||||||
private Long supplierId;
|
private Long supplierId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "出场日期")
|
@ApiModelProperty(value = "出场日期")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||||
private Date productionTime;
|
private Date productionTime;
|
||||||
|
|
||||||
/** 采购日期 */
|
/** 采购日期 */
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
and pcd.supplier_id = #{supplierId}
|
and pcd.supplier_id = #{supplierId}
|
||||||
</if>
|
</if>
|
||||||
<if test="productionTime != null">
|
<if test="productionTime != null">
|
||||||
and pcd.production_time between #{startTime} and #{endTime}
|
and pcd.production_time = #{productionTime}
|
||||||
</if>
|
</if>
|
||||||
<if test="keyWord != null and keyWord != ''">
|
<if test="keyWord != null and keyWord != ''">
|
||||||
and (mt.type_name like concat('%', #{keyWord}, '%')
|
and (mt.type_name like concat('%', #{keyWord}, '%')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue