Browse Source

app-求职人员教育经历、工作经验显示排序调整

liao-sea 8 months ago
parent
commit
3ce5f5ce88

+ 1 - 1
src/main/resources/mapping/cquery/EducationCQuery.xml

@@ -6,7 +6,7 @@
         <if test="jobUserID != null and jobUserID != ''">
             and jobUserID = #{jobUserID}
         </if>
-        order by CreateTime desc
+        order by SchoolTime desc
     </select>
     <select id="getById" resultType="com.hz.employmentsite.model.PcEducation">
         select * from pc_education where 1=1

+ 1 - 1
src/main/resources/mapping/cquery/ExperienceCQuery.xml

@@ -6,7 +6,7 @@
         <if test="jobUserID != null and jobUserID != ''">
             and jobUserID = #{jobUserID}
         </if>
-        order by CreateTime desc
+        order by StartTime desc
     </select>
     <select id="getById" resultType="com.hz.employmentsite.model.PcExperience">
         select * from pc_experience where 1=1