202110-15 mybatis如何使用注解实现一对多关联查询 mybatis注解实现一对多关联查询@Select("selectid,mockexam_sectionassection,idassectionId"+"fromt_p_qb_mockexam_section"+"wheremockexam_charpter_id=#{charpterId}andis_delete=0"+"orderbymockexam_section_idxasc")@Results({@Result(property="questionList",column="sectionId",many=@Many(select="com.zikaoshu.baseinfo.mapper.BaseinfoQuestionMapper.listQuestionResDto"))... 继续阅读 >
202103-14 Android kotlin使用注解实现防按钮连点功能的示例 SingleClick:@Retention(AnnotationRetention.RUNTIME)@Target(AnnotationTarget.FUNCTION)annotationclassSingleClick(//点击间隔时间,毫秒valvalue:Long=500)SingleClickAspect:importandroid.os.SystemClockimportorg.aspectj.lang.ProceedingJoinPointimportorg.aspectj.lang.annotation.Aroundimportorg.aspectj.lang.annotation.Aspectimportorg.aspectj.lang.annotation.Pointcutimportorg.aspectj.lan... 继续阅读 >