@@ -17,7 +17,6 @@ public class FsCourseWatchLogListParam implements Serializable {
private Long qwUserId;
-
private Long companyId;
private Long companyUserId;
@@ -270,7 +270,7 @@ public interface QwExternalContactMapper extends BaseMapper<QwExternalContact> {
"and (cu.nick_name like concat('%', #{companyUser}, '%') or cu.phonenumber= #{companyUser})"+
"</if> " +
" </where>"+
- "order by ec.id desc"+
+ "order by ec.create_time desc,ec.id desc"+
"</script>"})
List<QwExternalContactVO> selectQwExternalContactListVO(QwExternalContactParam qwExternalContact);
@@ -127,7 +127,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</foreach>
</if>
</where>
- order by l.finish_time asc,l.update_time desc
+ order by l.finish_time asc,l.update_time desc,l.create_time desc
</select>
<select id="selectFsCourseWatchLogListByParam" resultType="com.fs.course.vo.FsCourseWatchLogListVO">