Merge remote-tracking branch 'origin/dev_third_stage' into dev_third_stage
This commit is contained in:
+8
-2
@@ -43,10 +43,16 @@
|
|||||||
AND cert_category LIKE CONCAT(CONCAT('%',#{paramsReportDetailEO.certCategory}),'%')
|
AND cert_category LIKE CONCAT(CONCAT('%',#{paramsReportDetailEO.certCategory}),'%')
|
||||||
</if>
|
</if>
|
||||||
<if test="paramsReportDetailEO.sdt !=null and paramsReportDetailEO.sdt !=''">
|
<if test="paramsReportDetailEO.sdt !=null and paramsReportDetailEO.sdt !=''">
|
||||||
AND sdt LIKE CONCAT(CONCAT('%',#{paramsReportDetailEO.sdt}),'%')
|
AND sdt in
|
||||||
|
<foreach collection="paramsReportDetailEO.sdt.split(',')" index="" item="item" open="(" close=")" separator=",">
|
||||||
|
#{item}
|
||||||
|
</foreach>
|
||||||
</if>
|
</if>
|
||||||
<if test="paramsReportDetailEO.dre !=null and paramsReportDetailEO.dre !=''">
|
<if test="paramsReportDetailEO.dre !=null and paramsReportDetailEO.dre !=''">
|
||||||
AND dre LIKE CONCAT(CONCAT('%',#{paramsReportDetailEO.dre}),'%')
|
AND dre in
|
||||||
|
<foreach collection="paramsReportDetailEO.dre.split(',')" index="" item="item" open="(" close=")" separator=",">
|
||||||
|
#{item}
|
||||||
|
</foreach>
|
||||||
</if>
|
</if>
|
||||||
<if test="paramsReportDetailEO.paramsManifestId !=null and paramsReportDetailEO.paramsManifestId !=''">
|
<if test="paramsReportDetailEO.paramsManifestId !=null and paramsReportDetailEO.paramsManifestId !=''">
|
||||||
AND params_manifest_id = #{paramsReportDetailEO.paramsManifestId}
|
AND params_manifest_id = #{paramsReportDetailEO.paramsManifestId}
|
||||||
|
|||||||
+1
-1
@@ -1285,7 +1285,7 @@ public class ParamsReportDetailEOServiceImpl extends ServiceImpl<ParamsReportDet
|
|||||||
if (Date.class.equals(field.getType())) {
|
if (Date.class.equals(field.getType())) {
|
||||||
Date date = (Date) o;
|
Date date = (Date) o;
|
||||||
String pattern = "";
|
String pattern = "";
|
||||||
if ("deadline".equals(varName)) {
|
if ("syncTime".equals(varName)) {
|
||||||
pattern = "yyyy-MM-dd";
|
pattern = "yyyy-MM-dd";
|
||||||
} else {
|
} else {
|
||||||
pattern = "yyyy-MM-dd HH:mm:ss";
|
pattern = "yyyy-MM-dd HH:mm:ss";
|
||||||
|
|||||||
Reference in New Issue
Block a user