国内外标准详情 分解单日期格式和条款名称模糊查询

This commit is contained in:
zhaokaiyao@91isoft.com
2021-08-29 19:17:41 +08:00
parent d66fcc1ad1
commit 913fc6e8f5
2 changed files with 5 additions and 5 deletions
@@ -24,11 +24,11 @@ public class FindSarItemsPageReqDTO extends BasePage {
private String itemsName; private String itemsName;
@ApiModelProperty(value = "新车型实施日期") @ApiModelProperty(value = "新车型实施日期")
@DateTimeFormat(pattern = "yyy-MM-dd") @DateTimeFormat(pattern = "yyyy-MM-dd")
private Date XCXSSRQ; private Date XCXSSRQ;
@ApiModelProperty(value = "在产车实施日期") @ApiModelProperty(value = "在产车实施日期")
@DateTimeFormat(pattern = "yyy-MM-dd") @DateTimeFormat(pattern = "yyyy-MM-dd")
private Date ZCCSSRQ; private Date ZCCSSRQ;
@ApiModelProperty(value = "文件类型") @ApiModelProperty(value = "文件类型")
@@ -387,12 +387,12 @@
</if> </if>
<if test="itemsName != null and itemsName!=''"> <if test="itemsName != null and itemsName!=''">
and ITEMS_NAME=#{itemsName} and ITEMS_NAME like CONCAT('%', #{itemsName},'%')
</if> </if>
<if test="XCXSSRQ !=null and XCXSSRQ!=''"> <if test="XCXSSRQ !=null">
and XCXSSRQ=#{XCXSSRQ} and XCXSSRQ=#{XCXSSRQ}
</if> </if>
<if test="ZCCSSRQ !=null and ZCCSSRQ != ''"> <if test="ZCCSSRQ !=null">
and ZCCSSRQ=#{ZCCSSRQ} and ZCCSSRQ=#{ZCCSSRQ}
</if> </if>
</where> </where>