Commit b4b95b36 authored by zhangqingle's avatar zhangqingle

Merge remote-tracking branch 'origin/meiteng' into zql

parents 57204851 df4aa6c1
*.idea *.idea
*.logs
*.iml *.iml
target/ target/
.settings/ .settings/
......
...@@ -454,14 +454,12 @@ ...@@ -454,14 +454,12 @@
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency>
<!-- Apache Tika实现内容分析-->
<dependency>
<groupId>org.apache.tika</groupId> <groupId>org.apache.tika</groupId>
<artifactId>tika-parsers</artifactId> <artifactId>tika-parsers</artifactId>
<version>1.17</version> <version>1.17</version>
</dependency> </dependency>
</dependencies> </dependencies>
......
...@@ -12,3 +12,6 @@ alter table b_person_value add lesson_id varchar(64) COMMENT '课程或培训id' ...@@ -12,3 +12,6 @@ alter table b_person_value add lesson_id varchar(64) COMMENT '课程或培训id'
# -------------测试环境已更新-------------- # -------------测试环境已更新--------------
-- 修改个人积分表中 备注字段类型 19-12-17 11:04
alter table b_person_value modify column remarks text;
\ No newline at end of file
...@@ -40,6 +40,7 @@ public interface BReleaseValueRepository extends BaseMapper<BReleaseValue> { ...@@ -40,6 +40,7 @@ public interface BReleaseValueRepository extends BaseMapper<BReleaseValue> {
"<if test=\"trainSort!=null and trainSort != '' and trainSort == '0'.toString()\"> ,train_value desc </if> " + "<if test=\"trainSort!=null and trainSort != '' and trainSort == '0'.toString()\"> ,train_value desc </if> " +
"<if test=\"timeSort!=null and timeSort != '' and timeSort == '1'.toString()\"> ,update_date asc </if> " + "<if test=\"timeSort!=null and timeSort != '' and timeSort == '1'.toString()\"> ,update_date asc </if> " +
"<if test=\"timeSort!=null and timeSort != '' and timeSort == '0'.toString()\"> ,update_date desc </if> " + "<if test=\"timeSort!=null and timeSort != '' and timeSort == '0'.toString()\"> ,update_date desc </if> " +
"<if test=\"(lessonSort==null or lessonSort=='') and (trainSort==null or trainSort=='') and (timeSort==null or trainSort=='') \"> ,create_date asc </if> " +
"</script>") "</script>")
@ResultMap(value = "BaseResultMap" ) @ResultMap(value = "BaseResultMap" )
List<BReleaseValue> queryBReleaseValues(ReleaseValueResDto dto); List<BReleaseValue> queryBReleaseValues(ReleaseValueResDto dto);
......
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