Commit 7d51e93d authored by liuxinben's avatar liuxinben

push

parent 9d4e565a
......@@ -44,10 +44,10 @@ public interface FileNameDicMapper {
"<if test='analysisState != -1 ' >" +
" and STATE =#{analysisState}" +
"</if>" +
"<if test='uploadDate !=\"\" ' >" +
"<if test='uploadDate !=null ' >" +
" and substr(UPLOAD_DATE,0,8) =#{uploadDate}" +
"</if>" +
"<if test='fileName != \"\" ' >" +
"<if test='fileName != null ' >" +
" and FILE_NAME =#{fileName}" +
"</if>" +
" </where>" +
......@@ -67,10 +67,10 @@ public interface FileNameDicMapper {
"<if test='analysisState != -1 ' >" +
" and STATE =#{analysisState}" +
"</if>" +
"<if test='uploadDate !=\"\"' >" +
"<if test='uploadDate !=null' >" +
" and substr(UPLOAD_DATE,0,8) = #{uploadDate}" +
"</if>" +
"<if test='fileName != \"\" ' >" +
"<if test='fileName != null ' >" +
" and FILE_NAME = #{fileName}" +
"</if> </where> </script>")
public List<FileNameDicEntity> queryFileNameDicCount(@Param("uploadDate") String uploadDate, @Param("fileName") String fileName, @Param("analysisState") long analysisState);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment