ソースを参照

1、课表organ_id_字段初始化;
2、课表列表去除团体名和班级名,搜索更改为按团体编号/课程编号/课程名搜索
3、修复对外课程无部门编号
4、节假日获取方式调整
5、线上乐团课创建

Joe 5 年 前
コミット
1b5044e673

+ 1 - 1
mec-biz/src/main/resources/config/mybatis/SysUserCashAccountDetailMapper.xml

@@ -163,7 +163,7 @@
                 AND channel_ NOT IN (#{channel}) OR channel_ IS NULL
             </if>
         </where>
-        ORDER BY id_
+        ORDER BY id_ DESC
         <include refid="global.limit"/>
     </select>
 

+ 1 - 1
mec-biz/src/main/resources/config/mybatis/SysUserCoursesAccountDetailMapper.xml

@@ -110,7 +110,7 @@
 	<select id="queryPage" resultMap="SysUserCoursesAccountDetail" parameterType="map">
 		SELECT * FROM sys_user_courses_account_detail
 		<include refid="queryPageCondition" />
-		ORDER BY id_ <include refid="global.limit"/>
+		ORDER BY id_ DESC <include refid="global.limit"/>
 	</select>
 	
 	<!-- 查询当前表的总记录数 -->

+ 1 - 1
mec-web/src/main/java/com/ym/mec/web/controller/SysUserCoursesAccountDetailController.java

@@ -22,7 +22,7 @@ public class SysUserCoursesAccountDetailController extends BaseController {
     private SysUserCoursesAccountDetailService sysUserCoursesAccountDetailService;
 
     @ApiOperation(value = "分页查询用户交易明细")
-    @GetMapping("userCashAccountDetail/queryPage")
+    @GetMapping("/queryPage")
     public Object queryPage(CashAccountDetail queryInfo) {
         SysUser user = sysUserFeignService.queryUserInfo();
         if(user == null || user.getId() != null){