commit:添加多对多关联中间表更新支持,功能位于 班级管理 -> 课程 -> 编辑课程顺序

This commit is contained in:
Jerry
2020-09-27 22:22:59 +08:00
parent 295d466207
commit 307588694e
495 changed files with 7134 additions and 1183 deletions

BIN
orange-demo-single-service/.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 设备类型常量字典对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class DeviceType {

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 经验等级常量字典对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class ExpLevel {

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 性别常量字典对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class Gender {

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 学生行为常量字典对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class StudentActionType {

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 学生状态常量字典对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class StudentStatus {

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 学科常量字典对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class Subject {

View File

@@ -7,7 +7,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
* 应用服务启动类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@SpringBootApplication
public class MyApplication {

View File

@@ -17,7 +17,7 @@ import java.util.*;
* 行政区划数据访问接口类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@RestController
@RequestMapping("/admin/app/areaCode")

View File

@@ -27,7 +27,7 @@ import javax.validation.groups.Default;
* 课程数据操作控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -18,7 +18,7 @@ import java.util.*;
* 课程统计操作控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -21,7 +21,7 @@ import java.util.*;
* 年级操作控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -21,7 +21,7 @@ import javax.validation.groups.Default;
* 校区数据操作控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -18,7 +18,7 @@ import java.util.*;
* 学生行为统计操作控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -20,7 +20,7 @@ import javax.validation.groups.Default;
* 学生行为流水操作控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -21,7 +21,7 @@ import java.util.stream.Collectors;
* 班级数据操作控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -21,7 +21,7 @@ import javax.validation.groups.Default;
* 学生数据操作控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -7,7 +7,7 @@ import com.orange.demo.app.model.AreaCode;
* 行政区划数据操作访问接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface AreaCodeMapper extends BaseDaoMapper<AreaCode> {
}

View File

@@ -7,7 +7,7 @@ import com.orange.demo.app.model.ClassCourse;
* 数据操作访问接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface ClassCourseMapper extends BaseDaoMapper<ClassCourse> {
}

View File

@@ -7,7 +7,7 @@ import com.orange.demo.app.model.ClassStudent;
* 数据操作访问接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface ClassStudentMapper extends BaseDaoMapper<ClassStudent> {
}

View File

@@ -10,7 +10,7 @@ import java.util.*;
* 课程数据数据操作访问接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface CourseMapper extends BaseDaoMapper<Course> {

View File

@@ -10,7 +10,7 @@ import java.util.*;
* 课程统计数据操作访问接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface CourseTransStatsMapper extends BaseDaoMapper<CourseTransStats> {

View File

@@ -7,7 +7,7 @@ import com.orange.demo.app.model.Grade;
* 年级数据操作访问接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface GradeMapper extends BaseDaoMapper<Grade> {
}

View File

@@ -7,7 +7,7 @@ import com.orange.demo.app.model.MaterialEdition;
* 数据操作访问接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface MaterialEditionMapper extends BaseDaoMapper<MaterialEdition> {
}

View File

@@ -10,7 +10,7 @@ import java.util.*;
* 校区数据数据操作访问接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface SchoolInfoMapper extends BaseDaoMapper<SchoolInfo> {

View File

@@ -10,7 +10,7 @@ import java.util.*;
* 学生行为统计数据操作访问接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface StudentActionStatsMapper extends BaseDaoMapper<StudentActionStats> {

View File

@@ -10,7 +10,7 @@ import java.util.*;
* 学生行为流水数据操作访问接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface StudentActionTransMapper extends BaseDaoMapper<StudentActionTrans> {

View File

@@ -10,7 +10,7 @@ import java.util.*;
* 班级数据数据操作访问接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface StudentClassMapper extends BaseDaoMapper<StudentClass> {

View File

@@ -10,7 +10,7 @@ import java.util.*;
* 学生数据数据操作访问接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface StudentMapper extends BaseDaoMapper<Student> {

View File

@@ -8,7 +8,7 @@ import javax.persistence.*;
* 行政区划实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_area_code")

View File

@@ -9,7 +9,7 @@ import javax.validation.constraints.*;
* ClassCourse实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_class_course")

View File

@@ -9,7 +9,7 @@ import javax.validation.constraints.*;
* ClassStudent实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_class_student")

View File

@@ -18,7 +18,7 @@ import java.util.Map;
* Course实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_course")

View File

@@ -16,7 +16,7 @@ import java.util.Map;
* CourseTransStats实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_course_trans_stats")

View File

@@ -11,7 +11,7 @@ import javax.validation.constraints.*;
* Grade实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_grade")

View File

@@ -9,7 +9,7 @@ import javax.validation.constraints.*;
* MaterialEdition实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_material_edition")

View File

@@ -12,7 +12,7 @@ import java.util.Map;
* SchoolInfo实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_school_info")

View File

@@ -18,7 +18,7 @@ import java.util.Map;
* Student实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_student")
@@ -98,7 +98,7 @@ public class Student {
/**
* 可用学币数量。
*/
@NotNull(message = "数据验证失败,剩余学币不能为空!")
@NotNull(message = "数据验证失败,剩余学币不能为空!", groups = {UpdateGroup.class})
@Column(name = "left_coin")
private Integer leftCoin;

View File

@@ -13,7 +13,7 @@ import java.util.Map;
* StudentActionStats实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_student_action_stats")

View File

@@ -17,7 +17,7 @@ import java.util.Map;
* StudentActionTrans实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_student_action_trans")

View File

@@ -18,7 +18,7 @@ import java.util.Map;
* StudentClass实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_class")

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 班级级别常量字典对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class ClassLevel {

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 班级状态常量字典对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class ClassStatus {

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 课程难度常量字典对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class CourseDifficult {

View File

@@ -16,7 +16,7 @@ import java.util.List;
* 行政区划的Service类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class AreaCodeService extends BaseDictService<AreaCode, Long> {

View File

@@ -19,7 +19,7 @@ import java.util.*;
* 课程数据数据操作服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class CourseService extends BaseService<Course, Long> {

View File

@@ -15,7 +15,7 @@ import java.util.*;
* 课程统计数据操作服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class CourseTransStatsService extends BaseService<CourseTransStats, Long> {

View File

@@ -14,7 +14,7 @@ import org.springframework.transaction.annotation.Transactional;
* 年级数据操作服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class GradeService extends BaseDictService<Grade, Integer> {

View File

@@ -18,7 +18,7 @@ import java.util.*;
* 校区数据数据操作服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class SchoolInfoService extends BaseService<SchoolInfo, Long> {

View File

@@ -15,7 +15,7 @@ import java.util.*;
* 学生行为统计数据操作服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class StudentActionStatsService extends BaseService<StudentActionStats, Long> {

View File

@@ -18,7 +18,7 @@ import java.util.*;
* 学生行为流水数据操作服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class StudentActionTransService extends BaseService<StudentActionTrans, Long> {

View File

@@ -21,7 +21,7 @@ import java.util.*;
* 班级数据数据操作服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class StudentClassService extends BaseService<StudentClass, Long> {

View File

@@ -19,7 +19,7 @@ import java.util.*;
* 学生数据数据操作服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class StudentService extends BaseService<Student, Long> {

View File

@@ -8,7 +8,7 @@ import org.springframework.context.annotation.Configuration;
* 应用程序自定义的程序属性配置文件。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Configuration

View File

@@ -14,7 +14,7 @@ import javax.sql.DataSource;
* 数据源配置Bean对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Configuration
@EnableTransactionManagement

View File

@@ -15,7 +15,7 @@ import java.nio.charset.StandardCharsets;
* 这里主要配置Web的各种过滤器和监听器等Servlet容器组件。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Configuration
public class FilterConfig {

View File

@@ -9,7 +9,7 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
* 所有的项目拦截器都在这里集中配置
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Configuration
public class InterceptorConfig implements WebMvcConfigurer {

View File

@@ -31,7 +31,7 @@ import java.util.stream.Collectors;
* 登录用户Token验证、生成和权限验证的拦截器。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
public class AuthenticationInterceptor implements HandlerInterceptor {

View File

@@ -28,7 +28,7 @@ import java.util.*;
* 登录接口控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -22,7 +22,7 @@ import java.util.*;
* 菜单管理接口控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -25,7 +25,7 @@ import java.util.*;
* 权限字管理接口控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -25,7 +25,7 @@ import java.util.Map;
* 权限资源管理接口控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -24,7 +24,7 @@ import java.util.Map;
* 权限资源模块管理接口控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -29,7 +29,7 @@ import java.util.stream.Collectors;
* 角色管理接口控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -23,7 +23,7 @@ import javax.validation.groups.Default;
* 用户管理操作控制器类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Slf4j
@RestController

View File

@@ -9,7 +9,7 @@ import java.util.List;
* 菜单数据访问操作接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface SysMenuMapper extends BaseDaoMapper<SysMenu> {

View File

@@ -7,7 +7,7 @@ import com.orange.demo.upms.model.SysMenuPermCode;
* 菜单与权限字关系数据访问操作接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface SysMenuPermCodeMapper extends BaseDaoMapper<SysMenuPermCode> {
}

View File

@@ -11,7 +11,7 @@ import java.util.Map;
* 权限字数据访问操作接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface SysPermCodeMapper extends BaseDaoMapper<SysPermCode> {

View File

@@ -7,7 +7,7 @@ import com.orange.demo.upms.model.SysPermCodePerm;
* 权限字与权限资源关系数据访问操作接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface SysPermCodePermMapper extends BaseDaoMapper<SysPermCodePerm> {
}

View File

@@ -11,7 +11,7 @@ import java.util.Map;
* 权限资源数据访问操作接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface SysPermMapper extends BaseDaoMapper<SysPerm> {

View File

@@ -9,7 +9,7 @@ import java.util.List;
* 权限资源模块数据访问操作接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface SysPermModuleMapper extends BaseDaoMapper<SysPermModule> {

View File

@@ -7,7 +7,7 @@ import com.orange.demo.upms.model.SysPermWhitelist;
* 权限资源白名单数据访问操作接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface SysPermWhitelistMapper extends BaseDaoMapper<SysPermWhitelist> {
}

View File

@@ -10,7 +10,7 @@ import java.util.List;
* 角色数据访问操作接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface SysRoleMapper extends BaseDaoMapper<SysRole> {

View File

@@ -7,7 +7,7 @@ import com.orange.demo.upms.model.SysRoleMenu;
* 角色与菜单操作关联关系数据访问操作接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface SysRoleMenuMapper extends BaseDaoMapper<SysRoleMenu> {
}

View File

@@ -10,7 +10,7 @@ import java.util.*;
* 用户管理数据操作访问接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface SysUserMapper extends BaseDaoMapper<SysUser> {

View File

@@ -9,7 +9,7 @@ import java.util.List;
* 用户与角色关联关系数据访问操作接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public interface SysUserRoleMapper extends BaseDaoMapper<SysUserRole> {

View File

@@ -17,7 +17,7 @@ import java.util.List;
* 菜单实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_sys_menu")

View File

@@ -8,7 +8,7 @@ import javax.persistence.*;
* 菜单与权限字关联实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_sys_menu_perm_code")

View File

@@ -15,7 +15,7 @@ import java.util.Map;
* 权限资源实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_sys_perm")

View File

@@ -17,7 +17,7 @@ import java.util.List;
* 权限字实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_sys_perm_code")

View File

@@ -8,7 +8,7 @@ import javax.persistence.*;
* 权限字与权限资源关联实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_sys_perm_code_perm")

View File

@@ -16,7 +16,7 @@ import java.util.List;
* 权限模块实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_sys_perm_module")

View File

@@ -8,7 +8,7 @@ import javax.persistence.*;
* 白名单实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_sys_perm_whitelist")

View File

@@ -15,7 +15,7 @@ import java.util.List;
* 角色实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_sys_role")

View File

@@ -8,7 +8,7 @@ import javax.persistence.*;
* 角色菜单实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_sys_role_menu")

View File

@@ -21,7 +21,7 @@ import java.util.List;
* SysUser实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_sys_user")

View File

@@ -8,7 +8,7 @@ import javax.persistence.*;
* 用户角色实体对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Data
@Table(name = "zz_sys_user_role")

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 菜单类型常量对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class SysMenuType {

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 权限字类型常量对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class SysPermCodeType {

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 权限资源模块类型常量对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class SysPermModuleType {

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 用户状态常量字典对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class SysUserStatus {

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* 用户类型常量字典对象。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
public final class SysUserType {

View File

@@ -26,7 +26,7 @@ import java.util.stream.Collectors;
* 菜单数据服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class SysMenuService extends BaseService<SysMenu, Long> {

View File

@@ -24,7 +24,7 @@ import java.util.stream.Collectors;
* 权限字数据服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class SysPermCodeService extends BaseService<SysPermCode, Long> {

View File

@@ -18,7 +18,7 @@ import java.util.List;
* 权限资源模块数据服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class SysPermModuleService extends BaseService<SysPermModule, Long> {

View File

@@ -30,7 +30,7 @@ import java.util.stream.Collectors;
* 权限资源数据服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class SysPermService extends BaseService<SysPerm, Long> {

View File

@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
* 白名单中的权限资源,可以不受权限控制,任何用户皆可访问,一般用于常用的字典数据列表接口。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class SysPermWhitelistService extends BaseService<SysPermWhitelist, String> {

View File

@@ -26,7 +26,7 @@ import java.util.stream.Collectors;
* 角色数据服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class SysRoleService extends BaseService<SysRole, Long> {

View File

@@ -27,7 +27,7 @@ import java.util.stream.Collectors;
* 用户管理数据操作服务类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@Service
public class SysUserService extends BaseService<SysUser, Long> {

View File

@@ -12,7 +12,7 @@ import java.util.Date;
* Controller的环绕拦截类。
*
* @author Jerry
* @date 2020-09-25
* @date 2020-09-27
*/
@ControllerAdvice
public class MyControllerAdvice {

Some files were not shown because too many files have changed in this diff Show More