feat: 课程列表分页、导出功能修改

This commit is contained in:
liu.zixi
2025-11-26 16:31:15 +08:00
parent 8b52a5680b
commit 3413c73fc8
9 changed files with 119 additions and 41 deletions

View File

@@ -0,0 +1,17 @@
package com.xboe.config;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* 整体系统MySQL数据库schema配置
*/
@ConfigurationProperties(prefix = "mysql.schema")
@Data
public class MySqlSchemaProperties {
/**
* 用户中心数据库schema
*/
private String userCenterSchema;
}