diff --git a/.idea/modules.xml b/.idea/modules.xml index c1ab5ef..a7f7df6 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -2,6 +2,10 @@ + + + + diff --git a/JAVA_MYSQL_HCJXJY/jxjy-business/jxjy-business.iml b/JAVA_MYSQL_HCJXJY/jxjy-business/jxjy-business.iml deleted file mode 100644 index af0076a..0000000 --- a/JAVA_MYSQL_HCJXJY/jxjy-business/jxjy-business.iml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/JAVA_MYSQL_HCJXJY/jxjy-core/jxjy-core.iml b/JAVA_MYSQL_HCJXJY/jxjy-core/jxjy-core.iml deleted file mode 100644 index af0076a..0000000 --- a/JAVA_MYSQL_HCJXJY/jxjy-core/jxjy-core.iml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/JAVA_MYSQL_HCJXJY/jxjy-education.iml b/JAVA_MYSQL_HCJXJY/jxjy-education.iml deleted file mode 100644 index ad5a890..0000000 --- a/JAVA_MYSQL_HCJXJY/jxjy-education.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/JAVA_MYSQL_HCJXJY/jxjy-web/jxjy-web.iml b/JAVA_MYSQL_HCJXJY/jxjy-web/jxjy-web.iml deleted file mode 100644 index 905d81c..0000000 --- a/JAVA_MYSQL_HCJXJY/jxjy-web/jxjy-web.iml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/gp-business.iml b/JAVA_MYSQL_WEBSITE/gp-business/gp-business.iml new file mode 100644 index 0000000..9ab408f --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/gp-business.iml @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/pom.xml b/JAVA_MYSQL_WEBSITE/gp-business/pom.xml new file mode 100644 index 0000000..9fb1a5d --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/pom.xml @@ -0,0 +1,30 @@ + + + 4.0.0 + + com.hc + gpwebv2 + 0.0.1-SNAPSHOT + + + gp-business + 0.0.1-SNAPSHOT + gp-business + Demo project for Spring Boot + + + 11 + + + + + + com.hc + gp-core + 0.0.1-SNAPSHOT + + + + + diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/dto/ModulesDto.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/dto/ModulesDto.java new file mode 100644 index 0000000..6123ea9 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/dto/ModulesDto.java @@ -0,0 +1,26 @@ +package com.hc.gpbusiness.dto; + +import lombok.Data; + +import java.util.List; + +@Data +public class ModulesDto { + + private Integer moduleId; + + private Integer parentId; + + private String moduleName; + + private Integer moduleType; + + private Integer moduleIndex; + + private Long createTime; + + private Long updateTime; + + private List childModuleType; + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/BannerMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/BannerMapper.java new file mode 100644 index 0000000..1fbc32a --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/BannerMapper.java @@ -0,0 +1,19 @@ +package com.hc.gpbusiness.mapper; + + +import com.hc.gpbusiness.model.Banner; +import com.hc.gpcore.utils.tk.mapper.Mapper; +import org.springframework.stereotype.Repository; + +/** + * 广告表 + * (Banner)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:02 + */ + +@Repository +public interface BannerMapper extends Mapper { + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterAnnexMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterAnnexMapper.java new file mode 100644 index 0000000..ceee932 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterAnnexMapper.java @@ -0,0 +1,17 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.CourseChapterAnnex; +import com.hc.gpcore.utils.tk.mapper.Mapper; +import org.springframework.stereotype.Repository; + +/** + * 章节附件表(CourseChapterAnnex)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:07 + */ + +@Repository +public interface CourseChapterAnnexMapper extends Mapper { + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterMapper.java new file mode 100644 index 0000000..b516e8f --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterMapper.java @@ -0,0 +1,27 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.CourseChapter; +import com.hc.gpcore.utils.tk.mapper.Mapper; +import org.springframework.stereotype.Repository; + +import java.util.List; + +/** + * 课程章节表(CourseChapter)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:06 + */ + +@Repository +public interface CourseChapterMapper extends Mapper { + + /** + * 依据课程id 获取章节 + * + * @param courseId 课程id + * @return 实例对象数组 + */ + List queryByCourseId(Integer courseId); + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterTagMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterTagMapper.java new file mode 100644 index 0000000..d6e0d68 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterTagMapper.java @@ -0,0 +1,16 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.CourseChapterTag; +import org.springframework.stereotype.Repository; +import com.hc.gpcore.utils.tk.mapper.Mapper; +/** + * 图书章节标签表。新建完成的图书章节,可以根据讲师不同,给不同的章节打标签,比如基础阶段,进阶阶段。。。(CourseChapterTag)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:07 + */ + +@Repository +public interface CourseChapterTagMapper extends Mapper { + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterTestMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterTestMapper.java new file mode 100644 index 0000000..0611c07 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterTestMapper.java @@ -0,0 +1,16 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.CourseChapterTest; +import org.springframework.stereotype.Repository; +import com.hc.gpcore.utils.tk.mapper.Mapper; +/** + * 章节测试表/随堂练习表(CourseChapterTest)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:08 + */ + +@Repository +public interface CourseChapterTestMapper extends Mapper { + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterVideoMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterVideoMapper.java new file mode 100644 index 0000000..db9b094 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseChapterVideoMapper.java @@ -0,0 +1,27 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.CourseChapterVideo; +import org.springframework.stereotype.Repository; +import com.hc.gpcore.utils.tk.mapper.Mapper; + +import java.util.List; + +/** + * 课程视频(CourseChapterVideo)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:08 + */ + +@Repository +public interface CourseChapterVideoMapper extends Mapper { + + /** + * 获取章节下的视频 + * + * @param chapterId 章节id + * @return 实例对象数组 + */ + List queryByChapterId(Integer chapterId); + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseMapper.java new file mode 100644 index 0000000..9a51f19 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseMapper.java @@ -0,0 +1,28 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.Course; +import org.springframework.stereotype.Repository; +import com.hc.gpcore.utils.tk.mapper.Mapper; + +import java.util.List; + +/** + * 课程表(Course)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:06 + */ + +@Repository +public interface CourseMapper extends Mapper { + + + /** + * 依据moduleId 获取课程列表 + * + * @param moduleId 板块id + * @return 实例对象数组 + */ + List queryByModuleId(Integer moduleId); + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseTagCollectionMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseTagCollectionMapper.java new file mode 100644 index 0000000..9347f27 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseTagCollectionMapper.java @@ -0,0 +1,16 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.CourseTagCollection; +import org.springframework.stereotype.Repository; +import com.hc.gpcore.utils.tk.mapper.Mapper; +/** + * 新闻标签,新闻对应表(CourseTagCollection)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:09 + */ + +@Repository +public interface CourseTagCollectionMapper extends Mapper { + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseTagMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseTagMapper.java new file mode 100644 index 0000000..50d9d7c --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/CourseTagMapper.java @@ -0,0 +1,16 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.CourseTag; +import org.springframework.stereotype.Repository; +import com.hc.gpcore.utils.tk.mapper.Mapper; +/** + * 课程标签表(CourseTag)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:08 + */ + +@Repository +public interface CourseTagMapper extends Mapper { + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/ModulesMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/ModulesMapper.java new file mode 100644 index 0000000..377a66c --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/ModulesMapper.java @@ -0,0 +1,29 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.dto.ModulesDto; +import com.hc.gpbusiness.model.Modules; +import org.springframework.stereotype.Repository; +import com.hc.gpcore.utils.tk.mapper.Mapper; + +import java.util.List; + +/** + * 板块表(Module)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:10 + */ + +@Repository +public interface ModulesMapper extends Mapper { + + /** + * 依据父id查询 modules + * + * @param parentId 父级id + * @return 实例对象 + */ + List queryByParentId(Integer parentId); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/NewsHistoryMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/NewsHistoryMapper.java new file mode 100644 index 0000000..d4fe9e7 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/NewsHistoryMapper.java @@ -0,0 +1,16 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.NewsHistory; +import org.springframework.stereotype.Repository; +import com.hc.gpcore.utils.tk.mapper.Mapper; +/** + * 新闻操作记录表,比如转发,点评(NewsHistory)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:11 + */ + +@Repository +public interface NewsHistoryMapper extends Mapper { + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/NewsMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/NewsMapper.java new file mode 100644 index 0000000..994c366 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/NewsMapper.java @@ -0,0 +1,28 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.News; +import org.springframework.stereotype.Repository; +import com.hc.gpcore.utils.tk.mapper.Mapper; + +import java.util.List; + +/** + * 新闻表 + * (News)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:10 + */ + +@Repository +public interface NewsMapper extends Mapper { + + /** + * 依据moduleId获取新闻 + * + * @param moduleId 板块id + * @return 实例对象数组 + */ + List queryNewsByModuleId(Integer moduleId); + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/NewsTagCollectionMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/NewsTagCollectionMapper.java new file mode 100644 index 0000000..2bcf579 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/NewsTagCollectionMapper.java @@ -0,0 +1,16 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.NewsTagCollection; +import org.springframework.stereotype.Repository; +import com.hc.gpcore.utils.tk.mapper.Mapper; +/** + * 新闻标签,新闻对应表(NewsTagCollection)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:12 + */ + +@Repository +public interface NewsTagCollectionMapper extends Mapper { + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/NewsTagMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/NewsTagMapper.java new file mode 100644 index 0000000..48e2f07 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/NewsTagMapper.java @@ -0,0 +1,16 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.NewsTag; +import org.springframework.stereotype.Repository; +import com.hc.gpcore.utils.tk.mapper.Mapper; +/** + * 新闻标签表(NewsTag)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:11 + */ + +@Repository +public interface NewsTagMapper extends Mapper { + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/UserAdminMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/UserAdminMapper.java new file mode 100644 index 0000000..4ee4ea6 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/UserAdminMapper.java @@ -0,0 +1,27 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.UserAdmin; +import org.springframework.stereotype.Repository; +import com.hc.gpcore.utils.tk.mapper.Mapper; + +import java.util.List; + +/** + * 管理员表(UserAdmin)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:13 + */ + +@Repository +public interface UserAdminMapper extends Mapper { + + /** + * 依据用户名查询管理员 + * + * @param adminAccount 用户名 + * @return 实例对象数组 + */ + List selectAdminByAdminAccount(String adminAccount); + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/UserMapper.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/UserMapper.java new file mode 100644 index 0000000..8efcd6f --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/mapper/UserMapper.java @@ -0,0 +1,16 @@ +package com.hc.gpbusiness.mapper; + +import com.hc.gpbusiness.model.User; +import org.springframework.stereotype.Repository; +import com.hc.gpcore.utils.tk.mapper.Mapper; +/** + * 用户表(User)表数据库访问层 + * + * @author java + * @since 2020-07-29 16:23:12 + */ + +@Repository +public interface UserMapper extends Mapper { + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/Banner.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/Banner.java new file mode 100644 index 0000000..09e5d48 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/Banner.java @@ -0,0 +1,59 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 广告表 + * (Banner)实体类 + * + * @author java + * @since 2020-07-29 17:28:23 + */ +@Builder +@Data +public class Banner implements Serializable { + + private static final long serialVersionUID = 616327737880757755L; + + + /** + * ID主键 + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "ID主键") + private Integer bannerId; + + /** + * 地址 + */ + @ApiModelProperty(value = "地址", required = true) + private String bannerUrl; + + /** + * 索引 + */ + @ApiModelProperty(value = "索引", required = true) + private Integer bannerIndex; + + /** + * 创建时间 + */ + @ApiModelProperty(value = "创建时间") + private Long createTime; + + /** + * 更新时间 + */ + @ApiModelProperty(value = "更新时间") + private Long updateTime; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/Course.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/Course.java new file mode 100644 index 0000000..29fab6b --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/Course.java @@ -0,0 +1,111 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 课程表(Course)实体类 + * + * @author java + * @since 2020-07-29 17:28:23 + */ +@Builder +@Data +public class Course implements Serializable { + + private static final long serialVersionUID = 749521682797285061L; + + + /** + * 主键ID + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "主键ID") + private Integer courseId; + + /** + * 课程名称 + */ + @ApiModelProperty(value = "课程名称", required = true) + private String courseName; + + /** + * 图标 + */ + @ApiModelProperty(value = "图标", required = true) + private String courseLogo; + + /** + * 老师介绍是否可见 + */ + @ApiModelProperty(value = "老师介绍是否可见", required = true) + private Integer courseTeacherVisible; + + /** + * 章节是否可见 + */ + @ApiModelProperty(value = "章节是否可见", required = true) + private Integer courseChapterVisible; + + /** + * 介绍是否可见 + */ + @ApiModelProperty(value = "介绍是否可见", required = true) + private Integer courseDescVisible; + + /** + * 课程介绍 + */ + @ApiModelProperty(value = "课程介绍", required = true) + private String courseDesc; + + /** + * 课程时长 + */ + @ApiModelProperty(value = "课程时长", required = true) + private Float courseHours; + + /** + * 教师 + */ + @ApiModelProperty(value = "教师", required = true) + private String courseTeacher; + + /** + * 课程是否上架。下架后不可见 + */ + @ApiModelProperty(value = "课程是否上架。下架后不可见", required = true) + private Integer isValid; + + /** + * 如果有多张详情图,相册 + */ + @ApiModelProperty(value = "如果有多张详情图,相册", required = true) + private String gallery; + + /** + * 课程所属板块表 + */ + @ApiModelProperty(value = "课程所属板块表", required = true) + private Integer moduleId; + + /** + * 创建时间 + */ + @ApiModelProperty(value = "创建时间") + private Long createTime; + + /** + * 更新时间 + */ + @ApiModelProperty(value = "更新时间") + private Long updateTime; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapter.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapter.java new file mode 100644 index 0000000..c731c87 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapter.java @@ -0,0 +1,69 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 课程章节表(CourseChapter)实体类 + * + * @author java + * @since 2020-07-29 17:28:23 + */ +@Builder +@Data +public class CourseChapter implements Serializable { + + private static final long serialVersionUID = -19353598448976927L; + + + /** + * 主键id + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "主键id") + private Integer courseChapterId; + + /** + * 章节名字 + */ + @ApiModelProperty(value = "章节名字", required = true) + private String chapterName; + + /** + * 父节点ID + */ + @ApiModelProperty(value = "父节点ID", required = true) + private Integer parentId; + + /** + * 章节层级 + */ + @ApiModelProperty(value = "章节层级", required = true) + private Integer chapterLevel; + + /** + * 课程ID + */ + @ApiModelProperty(value = "课程ID", required = true) + private Integer courseId; + + /** + * 创建时间 + */ + @ApiModelProperty(value = "创建时间") + private Long createTime; + + /** + * 更新时间 + */ + @ApiModelProperty(value = "更新时间") + private Long updateTime; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapterAnnex.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapterAnnex.java new file mode 100644 index 0000000..c61d0de --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapterAnnex.java @@ -0,0 +1,69 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 章节附件表(CourseChapterAnnex)实体类 + * + * @author java + * @since 2020-07-29 17:28:23 + */ +@Builder +@Data +public class CourseChapterAnnex implements Serializable { + + private static final long serialVersionUID = 481844161933884385L; + + + /** + * 主键id + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "主键id") + private Integer courseChapterAnnexId; + + /** + * 附件名字 + */ + @ApiModelProperty(value = "附件名字", required = true) + private String annexName; + + /** + * 章节ID + */ + @ApiModelProperty(value = "章节ID", required = true) + private Integer courseChapterId; + + /** + * 介绍 + */ + @ApiModelProperty(value = "介绍", required = true) + private String annexIntroduction; + + /** + * 附件地址 + */ + @ApiModelProperty(value = "附件地址", required = true) + private String annexUrl; + + /** + * 创建时间 + */ + @ApiModelProperty(value = "创建时间") + private Long createTime; + + /** + * 更新时间 + */ + @ApiModelProperty(value = "更新时间") + private Long updateTime; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapterTag.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapterTag.java new file mode 100644 index 0000000..13b2c2e --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapterTag.java @@ -0,0 +1,63 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 图书章节标签表。新建完成的图书章节,可以根据讲师不同,给不同的章节打标签,比如基础阶段,进阶阶段。。。(CourseChapterTag)实体类 + * + * @author java + * @since 2020-07-29 17:28:23 + */ +@Builder +@Data +public class CourseChapterTag implements Serializable { + + private static final long serialVersionUID = -58319150173298367L; + + + /** + * 主键id + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "主键id") + private Integer tagId; + + /** + * 标签名 + */ + @ApiModelProperty(value = "标签名", required = true) + private String tagName; + + /** + * 显示索引 + */ + @ApiModelProperty(value = "显示索引", required = true) + private Integer tagIndex; + + /** + * 章节ID + */ + @ApiModelProperty(value = "章节ID", required = true) + private Integer courseChapterId; + + /** + * 创建时间 + */ + @ApiModelProperty(value = "创建时间") + private Long createTime; + + /** + * 更新时间 + */ + @ApiModelProperty(value = "更新时间") + private Long updateTime; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapterTest.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapterTest.java new file mode 100644 index 0000000..d865eda --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapterTest.java @@ -0,0 +1,51 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 章节测试表/随堂练习表(CourseChapterTest)实体类 + * + * @author java + * @since 2020-07-29 17:28:23 + */ +@Builder +@Data +public class CourseChapterTest implements Serializable { + + private static final long serialVersionUID = -96480269731831437L; + + + /** + * 主键id + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "主键id") + private Integer testId; + + /** + * 习题id + */ + @ApiModelProperty(value = "习题id", required = true) + private Integer questionId; + + /** + * 章节id.目前得系统部分章节,默认0 + */ + @ApiModelProperty(value = "章节id.目前得系统部分章节,默认0", required = true) + private Integer chapterId; + + /** + * 课程ID。目前得随堂练习都是配置在图书下得 + */ + @ApiModelProperty(value = "课程ID。目前得随堂练习都是配置在图书下得", required = true) + private Integer courseId; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapterVideo.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapterVideo.java new file mode 100644 index 0000000..1d13921 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseChapterVideo.java @@ -0,0 +1,79 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 课程视频(CourseChapterVideo)实体类 + * + * @author java + * @since 2020-07-29 17:28:23 + */ +@Builder +@Data +public class CourseChapterVideo implements Serializable { + + private static final long serialVersionUID = 219725579098381488L; + + + /** + * 主键id + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "主键id") + private Integer videoId; + + /** + * 章节id,目前视频直接配置在课程下,允许章节ID=NULL + */ + @ApiModelProperty(value = "章节id,目前视频直接配置在课程下,允许章节ID=NULL", required = true) + private Integer courseChapterId; + + /** + * 视频名称 + */ + @ApiModelProperty(value = "视频名称", required = true) + private String videoName; + + /** + * 视频地址 + */ + @ApiModelProperty(value = "视频地址", required = true) + private String videoUrl; + + + @ApiModelProperty(value = "${column.comment}", required = true) + private String videoOriUrl; + + /** + * 是否精品课程,精品课程允许试看 + */ + @ApiModelProperty(value = "是否精品课程,精品课程允许试看", required = true) + private Integer isFree; + + /** + * 试看时间,分钟 + */ + @ApiModelProperty(value = "试看时间,分钟", required = true) + private Integer freeTime; + + /** + * 创建时间 + */ + @ApiModelProperty(value = "创建时间") + private Long createTime; + + /** + * 更新时间 + */ + @ApiModelProperty(value = "更新时间") + private Long updateTime; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseTag.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseTag.java new file mode 100644 index 0000000..5fe7af8 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseTag.java @@ -0,0 +1,57 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 课程标签表(CourseTag)实体类 + * + * @author java + * @since 2020-07-29 17:28:23 + */ +@Builder +@Data +public class CourseTag implements Serializable { + + private static final long serialVersionUID = 170290086943577317L; + + + /** + * 主键id + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "主键id") + private Integer tagId; + + /** + * 标签名称 + */ + @ApiModelProperty(value = "标签名称", required = true) + private String tagName; + + /** + * 板块ID + */ + @ApiModelProperty(value = "板块ID", required = true) + private Integer moduleId; + + /** + * 创建时间 + */ + @ApiModelProperty(value = "创建时间") + private Long createTime; + + /** + * 更新时间 + */ + @ApiModelProperty(value = "更新时间") + private Long updateTime; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseTagCollection.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseTagCollection.java new file mode 100644 index 0000000..8565615 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/CourseTagCollection.java @@ -0,0 +1,45 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 新闻标签,新闻对应表(CourseTagCollection)实体类 + * + * @author java + * @since 2020-07-29 17:28:24 + */ +@Builder +@Data +public class CourseTagCollection implements Serializable { + + private static final long serialVersionUID = -46653580285753544L; + + + /** + * 主键id + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "主键id", required = true) + private Integer collectionId; + + /** + * 新闻tag id + */ + @ApiModelProperty(value = "新闻tag id", required = true) + private Integer tagId; + + /** + * 课程ID + */ + @ApiModelProperty(value = "课程ID", required = true) + private Integer courseId; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/Modules.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/Modules.java new file mode 100644 index 0000000..172c774 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/Modules.java @@ -0,0 +1,72 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; +import java.util.List; + + +/** + * 板块表(Module)实体类 + * + * @author java + * @since 2020-07-29 17:28:24 + */ +@Builder +@Data +public class Modules implements Serializable { + + private static final long serialVersionUID = -22327544394038593L; + + + /** + * 板块表ids + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "板块表id") + private Integer moduleId; + + /** + * 父板块节点Id。0表示第一级板块 + */ + @ApiModelProperty(value = "父板块节点Id。0表示第一级板块", required = true) + private Integer parentId; + + /** + * 板块名字 + */ + @ApiModelProperty(value = "板块名字", required = true) + private String moduleName; + + /** + * 板块类型12表示新闻,视频 + */ + @ApiModelProperty(value = "板块类型12表示新闻,视频", required = true) + private Integer moduleType; + + /** + * 模块得索引,保留 + */ + @ApiModelProperty(value = "模块得索引,保留", required = true) + private Integer moduleIndex; + + /** + * 创建时间 + */ + @ApiModelProperty(value = "创建时间") + private Long createTime; + + /** + * 更新时间 + */ + @ApiModelProperty(value = "更新时间") + private Long updateTime; + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/News.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/News.java new file mode 100644 index 0000000..01ce590 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/News.java @@ -0,0 +1,70 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 新闻表 + * (News)实体类 + * + * @author java + * @since 2020-07-29 17:28:24 + */ +@Builder +@Data +public class News implements Serializable { + + private static final long serialVersionUID = 485489852911503744L; + + + /** + * 新闻id + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "新闻id") + private Integer newsId; + + /** + * 鏍囬 + */ + @ApiModelProperty(value = "鏍囬", required = true) + private String newsTitle; + + /** + * 鏂伴椈Logo + */ + @ApiModelProperty(value = "鏂伴椈Logo", required = true) + private String newsLogo; + + /** + * 新闻内容 + */ + @ApiModelProperty(value = "新闻内容", required = true) + private String newsContent; + + /** + * 新闻所属板块 + */ + @ApiModelProperty(value = "新闻所属板块", required = true) + private Integer moduleId; + + /** + * 创建时间 + */ + @ApiModelProperty(value = "创建时间") + private Long createTime; + + /** + * 更新时间 + */ + @ApiModelProperty(value = "更新时间") + private Long updateTime; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/NewsHistory.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/NewsHistory.java new file mode 100644 index 0000000..6c8bc51 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/NewsHistory.java @@ -0,0 +1,63 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 新闻操作记录表,比如转发,点评(NewsHistory)实体类 + * + * @author java + * @since 2020-07-29 17:28:24 + */ +@Builder +@Data +public class NewsHistory implements Serializable { + + private static final long serialVersionUID = -84251348332107794L; + + + /** + * 主键 + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "主键") + private Integer historyId; + + /** + * 用户ID + */ + @ApiModelProperty(value = "用户ID", required = true) + private Integer userId; + + /** + * 01点评,转发 + */ + @ApiModelProperty(value = "01点评,转发", required = true) + private Integer opType; + + /** + * 点评或者转发得内容 + */ + @ApiModelProperty(value = "点评或者转发得内容", required = true) + private String opContent; + + /** + * 创建时间 + */ + @ApiModelProperty(value = "创建时间") + private Long createTime; + + /** + * 更新时间 + */ + @ApiModelProperty(value = "更新时间") + private Long updateTime; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/NewsTag.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/NewsTag.java new file mode 100644 index 0000000..5ae6554 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/NewsTag.java @@ -0,0 +1,57 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 新闻标签表(NewsTag)实体类 + * + * @author java + * @since 2020-07-29 17:28:24 + */ +@Builder +@Data +public class NewsTag implements Serializable { + + private static final long serialVersionUID = -54401004133126215L; + + + /** + * 新闻标签id + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "新闻标签id") + private Integer tagId; + + /** + * 标签名称 + */ + @ApiModelProperty(value = "标签名称", required = true) + private String tagName; + + /** + * 板块ID + */ + @ApiModelProperty(value = "板块ID", required = true) + private Integer moduleId; + + /** + * 创建时间 + */ + @ApiModelProperty(value = "创建时间") + private Long createTime; + + /** + * 更新时间 + */ + @ApiModelProperty(value = "更新时间") + private Long updateTime; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/NewsTagCollection.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/NewsTagCollection.java new file mode 100644 index 0000000..ee221da --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/NewsTagCollection.java @@ -0,0 +1,45 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 新闻标签,新闻对应表(NewsTagCollection)实体类 + * + * @author java + * @since 2020-07-29 17:28:24 + */ +@Builder +@Data +public class NewsTagCollection implements Serializable { + + private static final long serialVersionUID = -65633173510831046L; + + + /** + * 主键 + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "主键") + private Integer collectionId; + + /** + * 新闻tag id + */ + @ApiModelProperty(value = "新闻tag id", required = true) + private Integer tagId; + + /** + * 新闻ID + */ + @ApiModelProperty(value = "新闻ID", required = true) + private Integer newsId; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/User.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/User.java new file mode 100644 index 0000000..c9fbf87 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/User.java @@ -0,0 +1,99 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 用户表(User)实体类 + * + * @author java + * @since 2020-07-29 17:28:24 + */ +@Builder +@Data +public class User implements Serializable { + + private static final long serialVersionUID = -38876657990073810L; + + + /** + * 主键id + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "主键id") + private Integer userId; + + /** + * 身份账号 + */ + @ApiModelProperty(value = "身份账号", required = true) + private String cardId; + + /** + * 用户登陆账号 + */ + @ApiModelProperty(value = "用户登陆账号", required = true) + private String userAccount; + + /** + * 用户密码 + */ + @ApiModelProperty(value = "用户密码", required = true) + private String userPassword; + + /** + * 用户昵称 + */ + @ApiModelProperty(value = "用户昵称", required = true) + private String userNick; + + /** + * 头像 + */ + @ApiModelProperty(value = "头像", required = true) + private String userLogo; + + /** + * 手机号码 + */ + @ApiModelProperty(value = "手机号码", required = true) + private String userMobile; + + /** + * 邮箱 + */ + @ApiModelProperty(value = "邮箱", required = true) + private String userEmail; + + /** + * 性别 + */ + @ApiModelProperty(value = "性别", required = true) + private String userGender; + + /** + * 生日 + */ + @ApiModelProperty(value = "生日", required = true) + private String userBirthday; + + /** + * 创建时间 + */ + @ApiModelProperty(value = "创建时间") + private Long createTime; + + /** + * 更新时间 + */ + @ApiModelProperty(value = "更新时间") + private Long updateTime; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/UserAdmin.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/UserAdmin.java new file mode 100644 index 0000000..69fd481 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/UserAdmin.java @@ -0,0 +1,57 @@ +package com.hc.gpbusiness.model; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Builder; +import lombok.Data; + +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import java.io.Serializable; + + +/** + * 管理员表(UserAdmin)实体类 + * + * @author java + * @since 2020-07-29 17:28:24 + */ +@Builder +@Data +public class UserAdmin implements Serializable { + + private static final long serialVersionUID = -24174751835191163L; + + + /** + * 主键id + */ + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @ApiModelProperty(value = "主键id") + private Integer userAdminId; + + /** + * 管理员名字 + */ + @ApiModelProperty(value = "管理员名字", required = true) + private String adminName; + + /** + * 管理员账号 + */ + @ApiModelProperty(value = "管理员账号", required = true) + private String adminAccount; + + /** + * 管理员密码 + */ + @ApiModelProperty(value = "管理员密码", required = true) + private String adminPass; + + /** + * 管理员级别 + */ + @ApiModelProperty(value = "管理员级别", required = true) + private Integer permissionLevel; +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/jwt/GenerateAuthToken.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/jwt/GenerateAuthToken.java new file mode 100644 index 0000000..d0ea64e --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/jwt/GenerateAuthToken.java @@ -0,0 +1,65 @@ +package com.hc.gpbusiness.model.jwt; + +import com.hc.gpbusiness.model.User; +import com.hc.gpbusiness.model.UserAdmin; +import com.hc.gpbusiness.model.login.AccessEntity; +import com.hc.gpbusiness.model.login.AuthEntity; +import com.hc.gpbusiness.model.login.TokenEntity; +import com.hc.gpcore.utils.redis.RedisUtil; +import com.hc.gpcore.utils.tool.IdGenerator; +import lombok.extern.slf4j.Slf4j; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; +import org.springframework.util.SerializationUtils; + +import java.io.UnsupportedEncodingException; +import java.util.Objects; + +@Slf4j +@Component +public class GenerateAuthToken { + + @Autowired + private RedisUtil redisUtil; + + public AccessEntity generateToken(AuthEntity auth, User user, UserAdmin userAdmin) { + + AccessEntity accessEntity = new AccessEntity(); + accessEntity.setAuth(auth); + TokenEntity tokenEntity = new TokenEntity(); + // 默认超时 8 小时 + tokenEntity.setExpires(60 * 60 * 8); + String token = null; + try { + token = JWTUtil.sign(auth.getUserName(), IdGenerator.passwordToHash(auth.getPassword())); + } catch (UnsupportedEncodingException e) { + e.printStackTrace(); + } + tokenEntity.setId(token); + + if (userAdmin != null) { + //设置权限级别 + tokenEntity.setPermissionLevel(userAdmin.getPermissionLevel()); + } + + accessEntity.setToken(tokenEntity); + String accessEntityStr = null; + try { + accessEntityStr = new String(Objects.requireNonNull(SerializationUtils.serialize(accessEntity))); + } catch (Exception e) { + log.warn("{}-{}用户登录出错", auth.getUserName(), auth.getPassword()); + } + // 写入到 redis + redisUtil.set(accessEntity.getToken().getId(), + accessEntityStr, + accessEntity.getToken().getExpires()); + if (user != null) { + accessEntity.setUser(user); + } + if (userAdmin != null){ + accessEntity.setUserAdmin(userAdmin); + } + log.info("user: {}", auth.getUserName()+" 成功登录系统"); + return accessEntity; + } +} diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/jwt/JWTUtil.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/jwt/JWTUtil.java new file mode 100644 index 0000000..5db0735 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/jwt/JWTUtil.java @@ -0,0 +1,71 @@ +package com.hc.gpbusiness.model.jwt; + +import com.auth0.jwt.JWT; +import com.auth0.jwt.JWTVerifier; +import com.auth0.jwt.algorithms.Algorithm; +import com.auth0.jwt.exceptions.JWTDecodeException; +import com.auth0.jwt.interfaces.DecodedJWT; +import org.springframework.stereotype.Component; + +import java.io.UnsupportedEncodingException; +import java.util.Date; + +@Component +public class JWTUtil { + + // 过期时间8小时0分钟 + + private static final long EXPIRE_TIME = 8 * 60 * 60 * 1000; + + /** + * 校验token是否正确 + * + * @param token 密钥 + * @param secret 用户的密码 + * @return 是否正确 + */ + public static boolean verify(String token, String userName, String secret) { + try { + Algorithm algorithm = Algorithm.HMAC256(secret); + JWTVerifier verifier = JWT.require(algorithm) + .withClaim("userName", userName) + .build(); + DecodedJWT jwt = verifier.verify(token); + return true; + } catch (Exception exception) { + System.out.println(exception.getMessage()); + return false; + } + } + + /** + * 获得token中的信息无需secret解密也能获得 + * + * @return token中包含的用户名 + */ + public static String getUserName(String token) { + try { + DecodedJWT jwt = JWT.decode(token); + return jwt.getClaim("userName").asString(); + } catch (JWTDecodeException e) { + return null; + } + } + + /** + * 生成签名,2小时后过期 + * + * @param userName 用户名 + * @param secret 用户的密码 + * @return 加密的token + */ + public static String sign(String userName, String secret) throws UnsupportedEncodingException { + Date date = new Date(System.currentTimeMillis() + EXPIRE_TIME); + Algorithm algorithm = Algorithm.HMAC256(secret); + // 附带userName信息 + return JWT.create() + .withClaim("userName", userName) + .withExpiresAt(date) + .sign(algorithm); + } +} diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/login/AccessEntity.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/login/AccessEntity.java new file mode 100644 index 0000000..88265df --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/login/AccessEntity.java @@ -0,0 +1,38 @@ +package com.hc.gpbusiness.model.login; + +import com.hc.gpbusiness.model.User; +import com.hc.gpbusiness.model.UserAdmin; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.io.Serializable; + +@ApiModel +@Data +public class AccessEntity implements Serializable{ + + /** + * + */ + private static final long serialVersionUID = -5164168823800497252L; + +// @ApiModelProperty(value = "状态码",example = "1",required = true) +// private String code; +// +// @ApiModelProperty(value = "信息描述",example = "用户名或密码错误") +// private String msg; + + @ApiModelProperty(value = "用户信息") + private AuthEntity auth; + + @ApiModelProperty(value = "token",example = "e781d000-0498-46d3-90df-96edfd95bcd6") + private TokenEntity token; + + @ApiModelProperty(value = "user") + private User user; + + @ApiModelProperty(value = "userAdmin") + private UserAdmin userAdmin; + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/login/AuthEntity.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/login/AuthEntity.java new file mode 100644 index 0000000..6be0fe4 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/login/AuthEntity.java @@ -0,0 +1,23 @@ +package com.hc.gpbusiness.model.login; + +import lombok.Data; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@Data +public class AuthEntity implements Serializable { + + private static final long serialVersionUID = -9061398570055647081L; + + @NotNull(message = "用户名不可以为空") + private String userName; + + @NotNull(message = "密码不可以为空") + private String password; + + @NotNull(message = "登录类型不可以为空") + private Integer loginType; + + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/login/TokenEntity.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/login/TokenEntity.java new file mode 100644 index 0000000..943a912 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/model/login/TokenEntity.java @@ -0,0 +1,23 @@ +package com.hc.gpbusiness.model.login; + +import lombok.Data; + +import java.io.Serializable; + +@Data +public class TokenEntity implements Serializable{ + + /** + * + */ + private static final long serialVersionUID = -6482495805136843397L; + + private String id; // token的ID + + private int expires; // 过期时间 + + //1,2,3d对应后台123级管理员,4作为新增的前台用户 + + private Integer permissionLevel; // 权限级别 + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/BannerService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/BannerService.java new file mode 100644 index 0000000..4aa1afa --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/BannerService.java @@ -0,0 +1,61 @@ +package com.hc.gpbusiness.service; + +import com.github.pagehelper.PageInfo; +import com.hc.gpbusiness.model.Banner; +import org.springframework.stereotype.Component; + + +/** + * 广告表 + * (Banner)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:03 + */ + +@Component +public interface BannerService { + + /** + * 通过ID查询单条数据 + * + * @param bannerId 主键 + * @return 实例对象 + */ + Banner queryById(Integer bannerId); + + /** + * 新增数据 + * + * @param banner 实例对象 + * @return 实例对象 + */ + Banner insert(Banner banner); + + /** + * 修改数据 + * + * @param banner 实例对象 + * @return 实例对象 + */ + Banner update(Banner banner); + + /** + * 通过主键删除数据 + * + * @param bannerId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer bannerId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterAnnexService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterAnnexService.java new file mode 100644 index 0000000..26ac0da --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterAnnexService.java @@ -0,0 +1,60 @@ +package com.hc.gpbusiness.service; + +import com.hc.gpbusiness.model.CourseChapterAnnex; +import org.springframework.stereotype.Component; +import com.github.pagehelper.PageInfo; + + +/** + * 章节附件表(CourseChapterAnnex)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:07 + */ + +@Component +public interface CourseChapterAnnexService { + + /** + * 通过ID查询单条数据 + * + * @param courseChapterAnnexId 主键 + * @return 实例对象 + */ + CourseChapterAnnex queryById(Integer courseChapterAnnexId); + + /** + * 新增数据 + * + * @param courseChapterAnnex 实例对象 + * @return 实例对象 + */ + CourseChapterAnnex insert(CourseChapterAnnex courseChapterAnnex); + + /** + * 修改数据 + * + * @param courseChapterAnnex 实例对象 + * @return 实例对象 + */ + CourseChapterAnnex update(CourseChapterAnnex courseChapterAnnex); + + /** + * 通过主键删除数据 + * + * @param courseChapterAnnexId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer courseChapterAnnexId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterService.java new file mode 100644 index 0000000..84fa8e1 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterService.java @@ -0,0 +1,61 @@ +package com.hc.gpbusiness.service; + +import com.hc.gpbusiness.model.CourseChapter; +import org.springframework.stereotype.Component; +import com.github.pagehelper.PageInfo; + + +/** + * 课程章节表(CourseChapter)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:06 + */ + +@Component +public interface CourseChapterService { + + /** + * 通过ID查询单条数据 + * + * @param courseChapterId 主键 + * @return 实例对象 + */ + CourseChapter queryById(Integer courseChapterId); + + /** + * 新增数据 + * + * @param courseChapter 实例对象 + * @return 实例对象 + */ + CourseChapter insert(CourseChapter courseChapter); + + /** + * 修改数据 + * + * @param courseChapter 实例对象 + * @return 实例对象 + */ + CourseChapter update(CourseChapter courseChapter); + + /** + * 通过主键删除数据 + * + * @param courseChapterId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer courseChapterId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @param courseId 课程id + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size, Integer courseId); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterTagService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterTagService.java new file mode 100644 index 0000000..8ebe892 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterTagService.java @@ -0,0 +1,60 @@ +package com.hc.gpbusiness.service; + +import com.hc.gpbusiness.model.CourseChapterTag; +import org.springframework.stereotype.Component; +import com.github.pagehelper.PageInfo; + + +/** + * 图书章节标签表。新建完成的图书章节,可以根据讲师不同,给不同的章节打标签,比如基础阶段,进阶阶段。。。(CourseChapterTag)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:07 + */ + +@Component +public interface CourseChapterTagService { + + /** + * 通过ID查询单条数据 + * + * @param tagId 主键 + * @return 实例对象 + */ + CourseChapterTag queryById(Integer tagId); + + /** + * 新增数据 + * + * @param courseChapterTag 实例对象 + * @return 实例对象 + */ + CourseChapterTag insert(CourseChapterTag courseChapterTag); + + /** + * 修改数据 + * + * @param courseChapterTag 实例对象 + * @return 实例对象 + */ + CourseChapterTag update(CourseChapterTag courseChapterTag); + + /** + * 通过主键删除数据 + * + * @param tagId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer tagId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterTestService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterTestService.java new file mode 100644 index 0000000..cf66c08 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterTestService.java @@ -0,0 +1,60 @@ +package com.hc.gpbusiness.service; + +import com.hc.gpbusiness.model.CourseChapterTest; +import org.springframework.stereotype.Component; +import com.github.pagehelper.PageInfo; + + +/** + * 章节测试表/随堂练习表(CourseChapterTest)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:08 + */ + +@Component +public interface CourseChapterTestService { + + /** + * 通过ID查询单条数据 + * + * @param testId 主键 + * @return 实例对象 + */ + CourseChapterTest queryById(Integer testId); + + /** + * 新增数据 + * + * @param courseChapterTest 实例对象 + * @return 实例对象 + */ + CourseChapterTest insert(CourseChapterTest courseChapterTest); + + /** + * 修改数据 + * + * @param courseChapterTest 实例对象 + * @return 实例对象 + */ + CourseChapterTest update(CourseChapterTest courseChapterTest); + + /** + * 通过主键删除数据 + * + * @param testId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer testId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterVideoService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterVideoService.java new file mode 100644 index 0000000..7ac73a8 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseChapterVideoService.java @@ -0,0 +1,61 @@ +package com.hc.gpbusiness.service; + +import com.hc.gpbusiness.model.CourseChapterVideo; +import org.springframework.stereotype.Component; +import com.github.pagehelper.PageInfo; + + +/** + * 课程视频(CourseChapterVideo)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:08 + */ + +@Component +public interface CourseChapterVideoService { + + /** + * 通过ID查询单条数据 + * + * @param videoId 主键 + * @return 实例对象 + */ + CourseChapterVideo queryById(Integer videoId); + + /** + * 新增数据 + * + * @param courseChapterVideo 实例对象 + * @return 实例对象 + */ + CourseChapterVideo insert(CourseChapterVideo courseChapterVideo); + + /** + * 修改数据 + * + * @param courseChapterVideo 实例对象 + * @return 实例对象 + */ + CourseChapterVideo update(CourseChapterVideo courseChapterVideo); + + /** + * 通过主键删除数据 + * + * @param videoId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer videoId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @param chapterId 章节id + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size, Integer chapterId); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseService.java new file mode 100644 index 0000000..b65f54b --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseService.java @@ -0,0 +1,61 @@ +package com.hc.gpbusiness.service; + +import com.hc.gpbusiness.model.Course; +import org.springframework.stereotype.Component; +import com.github.pagehelper.PageInfo; + + +/** + * 课程表(Course)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:06 + */ + +@Component +public interface CourseService { + + /** + * 通过ID查询单条数据 + * + * @param courseId 主键 + * @return 实例对象 + */ + Course queryById(Integer courseId); + + /** + * 新增数据 + * + * @param course 实例对象 + * @return 实例对象 + */ + Course insert(Course course); + + /** + * 修改数据 + * + * @param course 实例对象 + * @return 实例对象 + */ + Course update(Course course); + + /** + * 通过主键删除数据 + * + * @param courseId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer courseId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @param moduleId 板块id + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size, Integer moduleId); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseTagCollectionService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseTagCollectionService.java new file mode 100644 index 0000000..0b5a0d8 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseTagCollectionService.java @@ -0,0 +1,60 @@ +package com.hc.gpbusiness.service; + +import com.hc.gpbusiness.model.CourseTagCollection; +import org.springframework.stereotype.Component; +import com.github.pagehelper.PageInfo; + + +/** + * 新闻标签,新闻对应表(CourseTagCollection)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:09 + */ + +@Component +public interface CourseTagCollectionService { + + /** + * 通过ID查询单条数据 + * + * @param collectionId 主键 + * @return 实例对象 + */ + CourseTagCollection queryById(Integer collectionId); + + /** + * 新增数据 + * + * @param courseTagCollection 实例对象 + * @return 实例对象 + */ + CourseTagCollection insert(CourseTagCollection courseTagCollection); + + /** + * 修改数据 + * + * @param courseTagCollection 实例对象 + * @return 实例对象 + */ + CourseTagCollection update(CourseTagCollection courseTagCollection); + + /** + * 通过主键删除数据 + * + * @param collectionId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer collectionId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseTagService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseTagService.java new file mode 100644 index 0000000..425458d --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/CourseTagService.java @@ -0,0 +1,60 @@ +package com.hc.gpbusiness.service; + +import com.hc.gpbusiness.model.CourseTag; +import org.springframework.stereotype.Component; +import com.github.pagehelper.PageInfo; + + +/** + * 课程标签表(CourseTag)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:09 + */ + +@Component +public interface CourseTagService { + + /** + * 通过ID查询单条数据 + * + * @param tagId 主键 + * @return 实例对象 + */ + CourseTag queryById(Integer tagId); + + /** + * 新增数据 + * + * @param courseTag 实例对象 + * @return 实例对象 + */ + CourseTag insert(CourseTag courseTag); + + /** + * 修改数据 + * + * @param courseTag 实例对象 + * @return 实例对象 + */ + CourseTag update(CourseTag courseTag); + + /** + * 通过主键删除数据 + * + * @param tagId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer tagId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/ModulesService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/ModulesService.java new file mode 100644 index 0000000..435fb0c --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/ModulesService.java @@ -0,0 +1,61 @@ +package com.hc.gpbusiness.service; + + +import com.hc.gpbusiness.model.Modules; +import org.springframework.stereotype.Component; +import com.github.pagehelper.PageInfo; + + +/** + * 板块表(Module)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:10 + */ + +@Component +public interface ModulesService { + + /** + * 通过ID查询单条数据 + * + * @param moduleId 主键 + * @return 实例对象 + */ + Modules queryById(Integer moduleId); + + /** + * 新增数据 + * + * @param modules 实例对象 + * @return 实例对象 + */ + Modules insert(Modules modules); + + /** + * 修改数据 + * + * @param modules 实例对象 + * @return 实例对象 + */ + Modules update(Modules modules); + + /** + * 通过主键删除数据 + * + * @param moduleId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer moduleId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/NewsHistoryService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/NewsHistoryService.java new file mode 100644 index 0000000..c7a80ae --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/NewsHistoryService.java @@ -0,0 +1,60 @@ +package com.hc.gpbusiness.service; + +import com.hc.gpbusiness.model.NewsHistory; +import org.springframework.stereotype.Component; +import com.github.pagehelper.PageInfo; + + +/** + * 新闻操作记录表,比如转发,点评(NewsHistory)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:11 + */ + +@Component +public interface NewsHistoryService { + + /** + * 通过ID查询单条数据 + * + * @param historyId 主键 + * @return 实例对象 + */ + NewsHistory queryById(Integer historyId); + + /** + * 新增数据 + * + * @param newsHistory 实例对象 + * @return 实例对象 + */ + NewsHistory insert(NewsHistory newsHistory); + + /** + * 修改数据 + * + * @param newsHistory 实例对象 + * @return 实例对象 + */ + NewsHistory update(NewsHistory newsHistory); + + /** + * 通过主键删除数据 + * + * @param historyId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer historyId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/NewsService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/NewsService.java new file mode 100644 index 0000000..6fb2807 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/NewsService.java @@ -0,0 +1,62 @@ +package com.hc.gpbusiness.service; + +import com.hc.gpbusiness.model.News; +import org.springframework.stereotype.Component; +import com.github.pagehelper.PageInfo; + + +/** + * 新闻表 + * (News)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:10 + */ + +@Component +public interface NewsService { + + /** + * 通过ID查询单条数据 + * + * @param newsId 主键 + * @return 实例对象 + */ + News queryById(Integer newsId); + + /** + * 新增数据 + * + * @param news 实例对象 + * @return 实例对象 + */ + News insert(News news); + + /** + * 修改数据 + * + * @param news 实例对象 + * @return 实例对象 + */ + News update(News news); + + /** + * 通过主键删除数据 + * + * @param newsId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer newsId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @param moduleId 板块id + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size, Integer moduleId); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/NewsTagCollectionService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/NewsTagCollectionService.java new file mode 100644 index 0000000..d53549e --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/NewsTagCollectionService.java @@ -0,0 +1,60 @@ +package com.hc.gpbusiness.service; + +import com.github.pagehelper.PageInfo; +import com.hc.gpbusiness.model.NewsTagCollection; +import org.springframework.stereotype.Component; + + +/** + * 新闻标签,新闻对应表(NewsTagCollection)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:12 + */ + +@Component +public interface NewsTagCollectionService { + + /** + * 通过ID查询单条数据 + * + * @param collectionId 主键 + * @return 实例对象 + */ + NewsTagCollection queryById(Integer collectionId); + + /** + * 新增数据 + * + * @param newsTagCollection 实例对象 + * @return 实例对象 + */ + NewsTagCollection insert(NewsTagCollection newsTagCollection); + + /** + * 修改数据 + * + * @param newsTagCollection 实例对象 + * @return 实例对象 + */ + NewsTagCollection update(NewsTagCollection newsTagCollection); + + /** + * 通过主键删除数据 + * + * @param collectionId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer collectionId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/NewsTagService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/NewsTagService.java new file mode 100644 index 0000000..fa6cde9 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/NewsTagService.java @@ -0,0 +1,60 @@ +package com.hc.gpbusiness.service; + +import com.hc.gpbusiness.model.NewsTag; +import org.springframework.stereotype.Component; +import com.github.pagehelper.PageInfo; + + +/** + * 新闻标签表(NewsTag)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:11 + */ + +@Component +public interface NewsTagService { + + /** + * 通过ID查询单条数据 + * + * @param tagId 主键 + * @return 实例对象 + */ + NewsTag queryById(Integer tagId); + + /** + * 新增数据 + * + * @param newsTag 实例对象 + * @return 实例对象 + */ + NewsTag insert(NewsTag newsTag); + + /** + * 修改数据 + * + * @param newsTag 实例对象 + * @return 实例对象 + */ + NewsTag update(NewsTag newsTag); + + /** + * 通过主键删除数据 + * + * @param tagId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer tagId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/UserAdminService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/UserAdminService.java new file mode 100644 index 0000000..2abe64f --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/UserAdminService.java @@ -0,0 +1,70 @@ +package com.hc.gpbusiness.service; + +import com.github.pagehelper.PageInfo; +import com.hc.gpbusiness.model.UserAdmin; +import com.hc.gpbusiness.model.login.AccessEntity; +import com.hc.gpbusiness.model.login.AuthEntity; +import org.springframework.stereotype.Component; + + +/** + * 管理员表(UserAdmin)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:13 + */ + +@Component +public interface UserAdminService { + + /** + * 通过ID查询单条数据 + * + * @param userAdminId 主键 + * @return 实例对象 + */ + UserAdmin queryById(Integer userAdminId); + + /** + * 新增数据 + * + * @param userAdmin 实例对象 + * @return 实例对象 + */ + UserAdmin insert(UserAdmin userAdmin); + + /** + * 修改数据 + * + * @param userAdmin 实例对象 + * @return 实例对象 + */ + UserAdmin update(UserAdmin userAdmin); + + /** + * 通过主键删除数据 + * + * @param userAdminId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer userAdminId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size); + + /** + * 后台管理员登录 + * + * @param authEntity 登录对象 + * @return 实例对象 + */ + AccessEntity userAdminLogin(AuthEntity authEntity) ; + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/UserService.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/UserService.java new file mode 100644 index 0000000..67c1bfa --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/UserService.java @@ -0,0 +1,60 @@ +package com.hc.gpbusiness.service; + +import com.github.pagehelper.PageInfo; +import com.hc.gpbusiness.model.User; +import org.springframework.stereotype.Component; + + +/** + * 用户表(User)表服务接口 + * + * @author java + * @since 2020-07-29 16:23:12 + */ + +@Component +public interface UserService { + + /** + * 通过ID查询单条数据 + * + * @param userId 主键 + * @return 实例对象 + */ + User queryById(Integer userId); + + /** + * 新增数据 + * + * @param user 实例对象 + * @return 实例对象 + */ + User insert(User user); + + /** + * 修改数据 + * + * @param user 实例对象 + * @return 实例对象 + */ + User update(User user); + + /** + * 通过主键删除数据 + * + * @param userId 主键 + * @return 是否成功 + */ + boolean deleteById(Integer userId); + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + PageInfo queryAllByLimit(int page, int size); + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/BannerServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/BannerServiceImpl.java new file mode 100644 index 0000000..fc9c7f1 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/BannerServiceImpl.java @@ -0,0 +1,86 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.github.pagehelper.PageInfo; +import com.hc.gpbusiness.mapper.BannerMapper; +import com.hc.gpbusiness.model.Banner; +import com.hc.gpbusiness.service.BannerService; +import org.springframework.stereotype.Service; + +/** + * 广告表 + * (Banner)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:04 + */ + +@Service("bannerService") +public class BannerServiceImpl implements BannerService { + + private final BannerMapper bannerMapper; + + public BannerServiceImpl(BannerMapper bannerMapper) { + this.bannerMapper = bannerMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param bannerId 主键 + * @return 实例对象 + */ + @Override + public Banner queryById(Integer bannerId) { + return this.bannerMapper.selectByPrimaryKey(bannerId); + } + + /** + * 新增数据 + * + * @param banner 实例对象 + * @return 实例对象 + */ + @Override + public Banner insert(Banner banner) { + banner.setCreateTime(System.currentTimeMillis()); + this.bannerMapper.insert(banner); + return banner; + } + + /** + * 修改数据 + * + * @param banner 实例对象 + * @return 实例对象 + */ + @Override + public Banner update(Banner banner) { + banner.setUpdateTime(System.currentTimeMillis()); + this.bannerMapper.updateByPrimaryKeySelective(banner); + return this.queryById(banner.getBannerId()); + } + + /** + * 通过主键删除数据 + * + * @param bannerId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer bannerId) { + return this.bannerMapper.deleteByPrimaryKey(bannerId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size) { + return PageHelper.startPage(page, size).doSelectPageInfo(this.bannerMapper::selectAll); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterAnnexServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterAnnexServiceImpl.java new file mode 100644 index 0000000..2f20c23 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterAnnexServiceImpl.java @@ -0,0 +1,85 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.CourseChapterAnnexMapper; +import com.hc.gpbusiness.model.CourseChapterAnnex; +import com.hc.gpbusiness.service.CourseChapterAnnexService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; + +/** + * 章节附件表(CourseChapterAnnex)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:07 + */ + +@Service("courseChapterAnnexService") +public class CourseChapterAnnexServiceImpl implements CourseChapterAnnexService { + + private final CourseChapterAnnexMapper courseChapterAnnexMapper; + + public CourseChapterAnnexServiceImpl(CourseChapterAnnexMapper courseChapterAnnexMapper) { + this.courseChapterAnnexMapper = courseChapterAnnexMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param courseChapterAnnexId 主键 + * @return 实例对象 + */ + @Override + public CourseChapterAnnex queryById(Integer courseChapterAnnexId) { + return this.courseChapterAnnexMapper.selectByPrimaryKey(courseChapterAnnexId); + } + + /** + * 新增数据 + * + * @param courseChapterAnnex 实例对象 + * @return 实例对象 + */ + @Override + public CourseChapterAnnex insert(CourseChapterAnnex courseChapterAnnex) { + courseChapterAnnex.setCreateTime(System.currentTimeMillis()); + this.courseChapterAnnexMapper.insert(courseChapterAnnex); + return courseChapterAnnex; + } + + /** + * 修改数据 + * + * @param courseChapterAnnex 实例对象 + * @return 实例对象 + */ + @Override + public CourseChapterAnnex update(CourseChapterAnnex courseChapterAnnex) { + courseChapterAnnex.setUpdateTime(System.currentTimeMillis()); + this.courseChapterAnnexMapper.updateByPrimaryKeySelective(courseChapterAnnex); + return this.queryById(courseChapterAnnex.getCourseChapterAnnexId()); + } + + /** + * 通过主键删除数据 + * + * @param courseChapterAnnexId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer courseChapterAnnexId) { + return this.courseChapterAnnexMapper.deleteByPrimaryKey(courseChapterAnnexId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size) { + return PageHelper.startPage(page, size).doSelectPageInfo(this.courseChapterAnnexMapper::selectAll); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterServiceImpl.java new file mode 100644 index 0000000..5500eb3 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterServiceImpl.java @@ -0,0 +1,91 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.CourseChapterMapper; +import com.hc.gpbusiness.model.CourseChapter; +import com.hc.gpbusiness.service.CourseChapterService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; + +import java.util.List; + +/** + * 课程章节表(CourseChapter)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:06 + */ + +@Service("courseChapterService") +public class CourseChapterServiceImpl implements CourseChapterService { + + private final CourseChapterMapper courseChapterMapper; + + public CourseChapterServiceImpl(CourseChapterMapper courseChapterMapper) { + this.courseChapterMapper = courseChapterMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param courseChapterId 主键 + * @return 实例对象 + */ + @Override + public CourseChapter queryById(Integer courseChapterId) { + return this.courseChapterMapper.selectByPrimaryKey(courseChapterId); + } + + /** + * 新增数据 + * + * @param courseChapter 实例对象 + * @return 实例对象 + */ + @Override + public CourseChapter insert(CourseChapter courseChapter) { + courseChapter.setCreateTime(System.currentTimeMillis()); + this.courseChapterMapper.insert(courseChapter); + return courseChapter; + } + + /** + * 修改数据 + * + * @param courseChapter 实例对象 + * @return 实例对象 + */ + @Override + public CourseChapter update(CourseChapter courseChapter) { + courseChapter.setUpdateTime(System.currentTimeMillis()); + this.courseChapterMapper.updateByPrimaryKeySelective(courseChapter); + return this.queryById(courseChapter.getCourseChapterId()); + } + + /** + * 通过主键删除数据 + * + * @param courseChapterId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer courseChapterId) { + return this.courseChapterMapper.deleteByPrimaryKey(courseChapterId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @param courseId 课程id + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size, Integer courseId) { + PageHelper.startPage(page, size); + List courseChapters = + this.courseChapterMapper.queryByCourseId(courseId); + return new PageInfo(courseChapters); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterTagServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterTagServiceImpl.java new file mode 100644 index 0000000..a185252 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterTagServiceImpl.java @@ -0,0 +1,85 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.CourseChapterTagMapper; +import com.hc.gpbusiness.model.CourseChapterTag; +import com.hc.gpbusiness.service.CourseChapterTagService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; + +/** + * 图书章节标签表。新建完成的图书章节,可以根据讲师不同,给不同的章节打标签,比如基础阶段,进阶阶段。。。(CourseChapterTag)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:07 + */ + +@Service("courseChapterTagService") +public class CourseChapterTagServiceImpl implements CourseChapterTagService { + + private final CourseChapterTagMapper courseChapterTagMapper; + + public CourseChapterTagServiceImpl(CourseChapterTagMapper courseChapterTagMapper) { + this.courseChapterTagMapper = courseChapterTagMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param tagId 主键 + * @return 实例对象 + */ + @Override + public CourseChapterTag queryById(Integer tagId) { + return this.courseChapterTagMapper.selectByPrimaryKey(tagId); + } + + /** + * 新增数据 + * + * @param courseChapterTag 实例对象 + * @return 实例对象 + */ + @Override + public CourseChapterTag insert(CourseChapterTag courseChapterTag) { + courseChapterTag.setCreateTime(System.currentTimeMillis()); + this.courseChapterTagMapper.insert(courseChapterTag); + return courseChapterTag; + } + + /** + * 修改数据 + * + * @param courseChapterTag 实例对象 + * @return 实例对象 + */ + @Override + public CourseChapterTag update(CourseChapterTag courseChapterTag) { + courseChapterTag.setUpdateTime(System.currentTimeMillis()); + this.courseChapterTagMapper.updateByPrimaryKeySelective(courseChapterTag); + return this.queryById(courseChapterTag.getTagId()); + } + + /** + * 通过主键删除数据 + * + * @param tagId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer tagId) { + return this.courseChapterTagMapper.deleteByPrimaryKey(tagId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size) { + return PageHelper.startPage(page, size).doSelectPageInfo(this.courseChapterTagMapper::selectAll); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterTestServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterTestServiceImpl.java new file mode 100644 index 0000000..474b724 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterTestServiceImpl.java @@ -0,0 +1,83 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.CourseChapterTestMapper; +import com.hc.gpbusiness.model.CourseChapterTest; +import com.hc.gpbusiness.service.CourseChapterTestService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; + +/** + * 章节测试表/随堂练习表(CourseChapterTest)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:08 + */ + +@Service("courseChapterTestService") +public class CourseChapterTestServiceImpl implements CourseChapterTestService { + + private final CourseChapterTestMapper courseChapterTestMapper; + + public CourseChapterTestServiceImpl(CourseChapterTestMapper courseChapterTestMapper) { + this.courseChapterTestMapper = courseChapterTestMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param testId 主键 + * @return 实例对象 + */ + @Override + public CourseChapterTest queryById(Integer testId) { + return this.courseChapterTestMapper.selectByPrimaryKey(testId); + } + + /** + * 新增数据 + * + * @param courseChapterTest 实例对象 + * @return 实例对象 + */ + @Override + public CourseChapterTest insert(CourseChapterTest courseChapterTest) { + this.courseChapterTestMapper.insert(courseChapterTest); + return courseChapterTest; + } + + /** + * 修改数据 + * + * @param courseChapterTest 实例对象 + * @return 实例对象 + */ + @Override + public CourseChapterTest update(CourseChapterTest courseChapterTest) { + this.courseChapterTestMapper.updateByPrimaryKeySelective(courseChapterTest); + return this.queryById(courseChapterTest.getTestId()); + } + + /** + * 通过主键删除数据 + * + * @param testId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer testId) { + return this.courseChapterTestMapper.deleteByPrimaryKey(testId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size) { + return PageHelper.startPage(page, size).doSelectPageInfo(this.courseChapterTestMapper::selectAll); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterVideoServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterVideoServiceImpl.java new file mode 100644 index 0000000..620d5b8 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseChapterVideoServiceImpl.java @@ -0,0 +1,90 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.CourseChapterVideoMapper; +import com.hc.gpbusiness.model.CourseChapterVideo; +import com.hc.gpbusiness.service.CourseChapterVideoService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; + +import java.util.List; + +/** + * 课程视频(CourseChapterVideo)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:08 + */ + +@Service("courseChapterVideoService") +public class CourseChapterVideoServiceImpl implements CourseChapterVideoService { + + private final CourseChapterVideoMapper courseChapterVideoMapper; + + public CourseChapterVideoServiceImpl(CourseChapterVideoMapper courseChapterVideoMapper) { + this.courseChapterVideoMapper = courseChapterVideoMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param videoId 主键 + * @return 实例对象 + */ + @Override + public CourseChapterVideo queryById(Integer videoId) { + return this.courseChapterVideoMapper.selectByPrimaryKey(videoId); + } + + /** + * 新增数据 + * + * @param courseChapterVideo 实例对象 + * @return 实例对象 + */ + @Override + public CourseChapterVideo insert(CourseChapterVideo courseChapterVideo) { + courseChapterVideo.setCreateTime(System.currentTimeMillis()); + this.courseChapterVideoMapper.insert(courseChapterVideo); + return courseChapterVideo; + } + + /** + * 修改数据 + * + * @param courseChapterVideo 实例对象 + * @return 实例对象 + */ + @Override + public CourseChapterVideo update(CourseChapterVideo courseChapterVideo) { + courseChapterVideo.setUpdateTime(System.currentTimeMillis()); + this.courseChapterVideoMapper.updateByPrimaryKeySelective(courseChapterVideo); + return this.queryById(courseChapterVideo.getVideoId()); + } + + /** + * 通过主键删除数据 + * + * @param videoId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer videoId) { + return this.courseChapterVideoMapper.deleteByPrimaryKey(videoId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size, Integer chapterId) { + PageHelper.startPage(page, size); + List courseChapterVideos + = this.courseChapterVideoMapper.queryByChapterId(chapterId); + return new PageInfo(courseChapterVideos); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseServiceImpl.java new file mode 100644 index 0000000..aa98c35 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseServiceImpl.java @@ -0,0 +1,91 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.CourseMapper; +import com.hc.gpbusiness.model.Course; +import com.hc.gpbusiness.model.News; +import com.hc.gpbusiness.service.CourseService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; + +import java.util.List; + +/** + * 课程表(Course)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:06 + */ + +@Service("courseService") +public class CourseServiceImpl implements CourseService { + + private final CourseMapper courseMapper; + + public CourseServiceImpl(CourseMapper courseMapper) { + this.courseMapper = courseMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param courseId 主键 + * @return 实例对象 + */ + @Override + public Course queryById(Integer courseId) { + return this.courseMapper.selectByPrimaryKey(courseId); + } + + /** + * 新增数据 + * + * @param course 实例对象 + * @return 实例对象 + */ + @Override + public Course insert(Course course) { + course.setCreateTime(System.currentTimeMillis()); + this.courseMapper.insert(course); + return course; + } + + /** + * 修改数据 + * + * @param course 实例对象 + * @return 实例对象 + */ + @Override + public Course update(Course course) { + course.setUpdateTime(System.currentTimeMillis()); + this.courseMapper.updateByPrimaryKeySelective(course); + return this.queryById(course.getCourseId()); + } + + /** + * 通过主键删除数据 + * + * @param courseId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer courseId) { + return this.courseMapper.deleteByPrimaryKey(courseId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @param moduleId 板块id + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size, Integer moduleId) { + PageHelper.startPage(page, size); + List courses = this.courseMapper.queryByModuleId(moduleId); + return new PageInfo(courses); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseTagCollectionServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseTagCollectionServiceImpl.java new file mode 100644 index 0000000..af61a62 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseTagCollectionServiceImpl.java @@ -0,0 +1,83 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.CourseTagCollectionMapper; +import com.hc.gpbusiness.model.CourseTagCollection; +import com.hc.gpbusiness.service.CourseTagCollectionService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; + +/** + * 新闻标签,新闻对应表(CourseTagCollection)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:09 + */ + +@Service("courseTagCollectionService") +public class CourseTagCollectionServiceImpl implements CourseTagCollectionService { + + private final CourseTagCollectionMapper courseTagCollectionMapper; + + public CourseTagCollectionServiceImpl(CourseTagCollectionMapper courseTagCollectionMapper) { + this.courseTagCollectionMapper = courseTagCollectionMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param collectionId 主键 + * @return 实例对象 + */ + @Override + public CourseTagCollection queryById(Integer collectionId) { + return this.courseTagCollectionMapper.selectByPrimaryKey(collectionId); + } + + /** + * 新增数据 + * + * @param courseTagCollection 实例对象 + * @return 实例对象 + */ + @Override + public CourseTagCollection insert(CourseTagCollection courseTagCollection) { + this.courseTagCollectionMapper.insert(courseTagCollection); + return courseTagCollection; + } + + /** + * 修改数据 + * + * @param courseTagCollection 实例对象 + * @return 实例对象 + */ + @Override + public CourseTagCollection update(CourseTagCollection courseTagCollection) { + this.courseTagCollectionMapper.updateByPrimaryKeySelective(courseTagCollection); + return this.queryById(courseTagCollection.getCollectionId()); + } + + /** + * 通过主键删除数据 + * + * @param collectionId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer collectionId) { + return this.courseTagCollectionMapper.deleteByPrimaryKey(collectionId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size) { + return PageHelper.startPage(page, size).doSelectPageInfo(this.courseTagCollectionMapper::selectAll); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseTagServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseTagServiceImpl.java new file mode 100644 index 0000000..187a712 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/CourseTagServiceImpl.java @@ -0,0 +1,85 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.CourseTagMapper; +import com.hc.gpbusiness.model.CourseTag; +import com.hc.gpbusiness.service.CourseTagService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; + +/** + * 课程标签表(CourseTag)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:09 + */ + +@Service("courseTagService") +public class CourseTagServiceImpl implements CourseTagService { + + private final CourseTagMapper courseTagMapper; + + public CourseTagServiceImpl(CourseTagMapper courseTagMapper) { + this.courseTagMapper = courseTagMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param tagId 主键 + * @return 实例对象 + */ + @Override + public CourseTag queryById(Integer tagId) { + return this.courseTagMapper.selectByPrimaryKey(tagId); + } + + /** + * 新增数据 + * + * @param courseTag 实例对象 + * @return 实例对象 + */ + @Override + public CourseTag insert(CourseTag courseTag) { + courseTag.setCreateTime(System.currentTimeMillis()); + this.courseTagMapper.insert(courseTag); + return courseTag; + } + + /** + * 修改数据 + * + * @param courseTag 实例对象 + * @return 实例对象 + */ + @Override + public CourseTag update(CourseTag courseTag) { + courseTag.setUpdateTime(System.currentTimeMillis()); + this.courseTagMapper.updateByPrimaryKeySelective(courseTag); + return this.queryById(courseTag.getTagId()); + } + + /** + * 通过主键删除数据 + * + * @param tagId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer tagId) { + return this.courseTagMapper.deleteByPrimaryKey(tagId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size) { + return PageHelper.startPage(page, size).doSelectPageInfo(this.courseTagMapper::selectAll); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/ModulesServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/ModulesServiceImpl.java new file mode 100644 index 0000000..5e2ffca --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/ModulesServiceImpl.java @@ -0,0 +1,95 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.dto.ModulesDto; +import com.hc.gpbusiness.mapper.ModulesMapper; +import com.hc.gpbusiness.model.Modules; +import com.hc.gpbusiness.service.ModulesService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; +import org.springframework.util.CollectionUtils; + +import java.util.List; + +/** + * 板块表(Module)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:10 + */ + +@Service("moduleService") +public class ModulesServiceImpl implements ModulesService { + + private final ModulesMapper moduleMapper; + + public ModulesServiceImpl(ModulesMapper moduleMapper) { + this.moduleMapper = moduleMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param moduleId 主键 + * @return 实例对象 + */ + @Override + public Modules queryById(Integer moduleId) { + return this.moduleMapper.selectByPrimaryKey(moduleId); + } + + /** + * 新增数据 + * + * @param modules 实例对象 + * @return 实例对象 + */ + @Override + public Modules insert(Modules modules) { + modules.setCreateTime(System.currentTimeMillis()); + this.moduleMapper.insert(modules); + return modules; + } + + /** + * 修改数据 + * + * @param modules 实例对象 + * @return 实例对象 + */ + @Override + public Modules update(Modules modules) { + modules.setUpdateTime(System.currentTimeMillis()); + this.moduleMapper.updateByPrimaryKeySelective(modules); + return this.queryById(modules.getModuleId()); + } + + /** + * 通过主键删除数据 + * + * @param moduleId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer moduleId) { + return this.moduleMapper.deleteByPrimaryKey(moduleId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size) { + PageHelper.startPage(page, size); + List moduless = this.moduleMapper.queryByParentId(0); + if (CollectionUtils.isEmpty(moduless)) { + return null; + } + moduless.forEach(modulesDto -> modulesDto.setChildModuleType(this.moduleMapper.queryByParentId(modulesDto.getModuleId()))); + return new PageInfo(moduless); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/NewsHistoryServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/NewsHistoryServiceImpl.java new file mode 100644 index 0000000..b7ae5fb --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/NewsHistoryServiceImpl.java @@ -0,0 +1,85 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.NewsHistoryMapper; +import com.hc.gpbusiness.model.NewsHistory; +import com.hc.gpbusiness.service.NewsHistoryService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; + +/** + * 新闻操作记录表,比如转发,点评(NewsHistory)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:11 + */ + +@Service("newsHistoryService") +public class NewsHistoryServiceImpl implements NewsHistoryService { + + private final NewsHistoryMapper newsHistoryMapper; + + public NewsHistoryServiceImpl(NewsHistoryMapper newsHistoryMapper) { + this.newsHistoryMapper = newsHistoryMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param historyId 主键 + * @return 实例对象 + */ + @Override + public NewsHistory queryById(Integer historyId) { + return this.newsHistoryMapper.selectByPrimaryKey(historyId); + } + + /** + * 新增数据 + * + * @param newsHistory 实例对象 + * @return 实例对象 + */ + @Override + public NewsHistory insert(NewsHistory newsHistory) { + newsHistory.setCreateTime(System.currentTimeMillis()); + this.newsHistoryMapper.insert(newsHistory); + return newsHistory; + } + + /** + * 修改数据 + * + * @param newsHistory 实例对象 + * @return 实例对象 + */ + @Override + public NewsHistory update(NewsHistory newsHistory) { + newsHistory.setUpdateTime(System.currentTimeMillis()); + this.newsHistoryMapper.updateByPrimaryKeySelective(newsHistory); + return this.queryById(newsHistory.getHistoryId()); + } + + /** + * 通过主键删除数据 + * + * @param historyId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer historyId) { + return this.newsHistoryMapper.deleteByPrimaryKey(historyId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size) { + return PageHelper.startPage(page, size).doSelectPageInfo(this.newsHistoryMapper::selectAll); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/NewsServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/NewsServiceImpl.java new file mode 100644 index 0000000..99bc827 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/NewsServiceImpl.java @@ -0,0 +1,91 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.NewsMapper; +import com.hc.gpbusiness.model.News; +import com.hc.gpbusiness.service.NewsService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; + +import java.util.List; + +/** + * 新闻表 + * (News)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:10 + */ + +@Service("newsService") +public class NewsServiceImpl implements NewsService { + + private final NewsMapper newsMapper; + + public NewsServiceImpl(NewsMapper newsMapper) { + this.newsMapper = newsMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param newsId 主键 + * @return 实例对象 + */ + @Override + public News queryById(Integer newsId) { + return this.newsMapper.selectByPrimaryKey(newsId); + } + + /** + * 新增数据 + * + * @param news 实例对象 + * @return 实例对象 + */ + @Override + public News insert(News news) { + news.setCreateTime(System.currentTimeMillis()); + this.newsMapper.insert(news); + return news; + } + + /** + * 修改数据 + * + * @param news 实例对象 + * @return 实例对象 + */ + @Override + public News update(News news) { + news.setUpdateTime(System.currentTimeMillis()); + this.newsMapper.updateByPrimaryKeySelective(news); + return this.queryById(news.getNewsId()); + } + + /** + * 通过主键删除数据 + * + * @param newsId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer newsId) { + return this.newsMapper.deleteByPrimaryKey(newsId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @param moduleId 板块id + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size, Integer moduleId) { + PageHelper.startPage(page, size); + List news = this.newsMapper.queryNewsByModuleId(moduleId); + return new PageInfo(news); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/NewsTagCollectionServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/NewsTagCollectionServiceImpl.java new file mode 100644 index 0000000..fc9395d --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/NewsTagCollectionServiceImpl.java @@ -0,0 +1,83 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.NewsTagCollectionMapper; +import com.hc.gpbusiness.model.NewsTagCollection; +import com.hc.gpbusiness.service.NewsTagCollectionService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; + +/** + * 新闻标签,新闻对应表(NewsTagCollection)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:12 + */ + +@Service("newsTagCollectionService") +public class NewsTagCollectionServiceImpl implements NewsTagCollectionService { + + private final NewsTagCollectionMapper newsTagCollectionMapper; + + public NewsTagCollectionServiceImpl(NewsTagCollectionMapper newsTagCollectionMapper) { + this.newsTagCollectionMapper = newsTagCollectionMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param collectionId 主键 + * @return 实例对象 + */ + @Override + public NewsTagCollection queryById(Integer collectionId) { + return this.newsTagCollectionMapper.selectByPrimaryKey(collectionId); + } + + /** + * 新增数据 + * + * @param newsTagCollection 实例对象 + * @return 实例对象 + */ + @Override + public NewsTagCollection insert(NewsTagCollection newsTagCollection) { + this.newsTagCollectionMapper.insert(newsTagCollection); + return newsTagCollection; + } + + /** + * 修改数据 + * + * @param newsTagCollection 实例对象 + * @return 实例对象 + */ + @Override + public NewsTagCollection update(NewsTagCollection newsTagCollection) { + this.newsTagCollectionMapper.updateByPrimaryKeySelective(newsTagCollection); + return this.queryById(newsTagCollection.getCollectionId()); + } + + /** + * 通过主键删除数据 + * + * @param collectionId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer collectionId) { + return this.newsTagCollectionMapper.deleteByPrimaryKey(collectionId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size) { + return PageHelper.startPage(page, size).doSelectPageInfo(this.newsTagCollectionMapper::selectAll); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/NewsTagServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/NewsTagServiceImpl.java new file mode 100644 index 0000000..76aef43 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/NewsTagServiceImpl.java @@ -0,0 +1,85 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.NewsTagMapper; +import com.hc.gpbusiness.model.NewsTag; +import com.hc.gpbusiness.service.NewsTagService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; + +/** + * 新闻标签表(NewsTag)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:11 + */ + +@Service("newsTagService") +public class NewsTagServiceImpl implements NewsTagService { + + private final NewsTagMapper newsTagMapper; + + public NewsTagServiceImpl(NewsTagMapper newsTagMapper) { + this.newsTagMapper = newsTagMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param tagId 主键 + * @return 实例对象 + */ + @Override + public NewsTag queryById(Integer tagId) { + return this.newsTagMapper.selectByPrimaryKey(tagId); + } + + /** + * 新增数据 + * + * @param newsTag 实例对象 + * @return 实例对象 + */ + @Override + public NewsTag insert(NewsTag newsTag) { + newsTag.setCreateTime(System.currentTimeMillis()); + this.newsTagMapper.insert(newsTag); + return newsTag; + } + + /** + * 修改数据 + * + * @param newsTag 实例对象 + * @return 实例对象 + */ + @Override + public NewsTag update(NewsTag newsTag) { + newsTag.setUpdateTime(System.currentTimeMillis()); + this.newsTagMapper.updateByPrimaryKeySelective(newsTag); + return this.queryById(newsTag.getTagId()); + } + + /** + * 通过主键删除数据 + * + * @param tagId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer tagId) { + return this.newsTagMapper.deleteByPrimaryKey(tagId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size) { + return PageHelper.startPage(page, size).doSelectPageInfo(this.newsTagMapper::selectAll); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/UserAdminServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/UserAdminServiceImpl.java new file mode 100644 index 0000000..62e4735 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/UserAdminServiceImpl.java @@ -0,0 +1,117 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.UserAdminMapper; +import com.hc.gpbusiness.model.UserAdmin; +import com.hc.gpbusiness.model.jwt.GenerateAuthToken; +import com.hc.gpbusiness.model.login.AccessEntity; +import com.hc.gpbusiness.model.login.AuthEntity; +import com.hc.gpbusiness.service.UserAdminService; +import com.hc.gpcore.enums.InfoEnum; +import com.hc.gpcore.exception.ResponseException; +import com.hc.gpcore.utils.tool.IdGenerator; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; +import org.springframework.util.CollectionUtils; + +import java.util.List; +import java.util.Objects; + +/** + * 管理员表(UserAdmin)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:13 + */ + +@Service("userAdminService") +public class UserAdminServiceImpl implements UserAdminService { + + private final UserAdminMapper userAdminMapper; + + private final GenerateAuthToken generateAuthToken; + + public UserAdminServiceImpl(UserAdminMapper userAdminMapper, GenerateAuthToken generateAuthToken) { + this.userAdminMapper = userAdminMapper; + this.generateAuthToken = generateAuthToken; + } + + /** + * 通过ID查询单条数据 + * + * @param userAdminId 主键 + * @return 实例对象 + */ + @Override + public UserAdmin queryById(Integer userAdminId) { + return this.userAdminMapper.selectByPrimaryKey(userAdminId); + } + + /** + * 新增数据 + * + * @param userAdmin 实例对象 + * @return 实例对象 + */ + @Override + public UserAdmin insert(UserAdmin userAdmin) { + this.userAdminMapper.insert(userAdmin); + return userAdmin; + } + + /** + * 修改数据 + * + * @param userAdmin 实例对象 + * @return 实例对象 + */ + @Override + public UserAdmin update(UserAdmin userAdmin) { + this.userAdminMapper.updateByPrimaryKeySelective(userAdmin); + return this.queryById(userAdmin.getUserAdminId()); + } + + /** + * 通过主键删除数据 + * + * @param userAdminId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer userAdminId) { + return this.userAdminMapper.deleteByPrimaryKey(userAdminId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size) { + return PageHelper.startPage(page, size).doSelectPageInfo(this.userAdminMapper::selectAll); + } + + @Override + public AccessEntity userAdminLogin(AuthEntity authEntity) { + //依据用户名查询管理员 + List userAdmins = userAdminMapper.selectAdminByAdminAccount(authEntity.getUserName()); + if (CollectionUtils.isEmpty(userAdmins)) { + throw new ResponseException(InfoEnum.LOGIN_USER_NAME_ERROR); + } + UserAdmin userAdmin = userAdmins.get(0); + + //密码错误 + String password = IdGenerator.passwordToHash(authEntity.getPassword()); + if (!Objects.equals(password, userAdmin.getAdminPass())) { + throw new ResponseException(InfoEnum.LOGIN_PASSWORD_ERROR); + } + + //验证密码正确 生成token 存入redis并返回 + //登录成功 生成token + return generateAuthToken.generateToken(authEntity, null, userAdmin); + } + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/UserServiceImpl.java b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/UserServiceImpl.java new file mode 100644 index 0000000..a49ec7a --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/java/com/hc/gpbusiness/service/impl/UserServiceImpl.java @@ -0,0 +1,85 @@ +package com.hc.gpbusiness.service.impl; + +import com.github.pagehelper.PageHelper; +import com.hc.gpbusiness.mapper.UserMapper; +import com.hc.gpbusiness.model.User; +import com.hc.gpbusiness.service.UserService; +import org.springframework.stereotype.Service; +import com.github.pagehelper.PageInfo; + +/** + * 用户表(User)表服务实现类 + * + * @author java + * @since 2020-07-29 16:23:12 + */ + +@Service("userService") +public class UserServiceImpl implements UserService { + + private final UserMapper userMapper; + + public UserServiceImpl(UserMapper userMapper) { + this.userMapper = userMapper; + } + + /** + * 通过ID查询单条数据 + * + * @param userId 主键 + * @return 实例对象 + */ + @Override + public User queryById(Integer userId) { + return this.userMapper.selectByPrimaryKey(userId); + } + + /** + * 新增数据 + * + * @param user 实例对象 + * @return 实例对象 + */ + @Override + public User insert(User user) { + user.setCreateTime(System.currentTimeMillis()); + this.userMapper.insert(user); + return user; + } + + /** + * 修改数据 + * + * @param user 实例对象 + * @return 实例对象 + */ + @Override + public User update(User user) { + user.setUpdateTime(System.currentTimeMillis()); + this.userMapper.updateByPrimaryKeySelective(user); + return this.queryById(user.getUserId()); + } + + /** + * 通过主键删除数据 + * + * @param userId 主键 + * @return 是否成功 + */ + @Override + public boolean deleteById(Integer userId) { + return this.userMapper.deleteByPrimaryKey(userId) > 0; + } + + /** + * 分页查询多条数据 + * + * @param page 页码 + * @param size 查询条数 + * @return 对象列表 + */ + @Override + public PageInfo queryAllByLimit(int page, int size) { + return PageHelper.startPage(page, size).doSelectPageInfo(this.userMapper::selectAll); + } +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/BannerMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/BannerMapper.xml new file mode 100644 index 0000000..37d28b2 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/BannerMapper.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + banner_id, + banner_url, + banner_index, + create_time, + update_time + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterAnnexMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterAnnexMapper.xml new file mode 100644 index 0000000..82f56c3 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterAnnexMapper.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + course_chapter_annex_id, + annex_name, + course_chapter_id, + annex_introduction, + annex_url, + create_time, + update_time + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterMapper.xml new file mode 100644 index 0000000..6b9fd1a --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterMapper.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + course_chapter_id, + chapter_name, + parent_id, + chapter_level, + course_id, + create_time, + update_time + + + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterTagMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterTagMapper.xml new file mode 100644 index 0000000..1ac05b1 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterTagMapper.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + tag_id, + tag_name, + tag_index, + course_chapter_id, + create_time, + update_time + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterTestMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterTestMapper.xml new file mode 100644 index 0000000..f30cdf0 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterTestMapper.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + test_id, + question_id, + chapter_id, + course_id + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterVideoMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterVideoMapper.xml new file mode 100644 index 0000000..97ac3ff --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseChapterVideoMapper.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + video_id, + course_chapter_id, + video_name, + video_url, + video_ori_url, + is_free, + free_time, + create_time, + update_time + + + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseMapper.xml new file mode 100644 index 0000000..c533d35 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseMapper.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + course_id, + course_name, + course_logo, + course_teacher_visible, + course_chapter_visible, + course_desc_visible, + course_desc, + course_hours, + course_teacher, + is_valid, + gallery, + module_id, + create_time, + update_time + + + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseTagCollectionMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseTagCollectionMapper.xml new file mode 100644 index 0000000..4d3fbc4 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseTagCollectionMapper.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + collection_id, + tag_id, + course_id + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseTagMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseTagMapper.xml new file mode 100644 index 0000000..c57565b --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/CourseTagMapper.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + tag_id, + tag_name, + module_id, + create_time, + update_time + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/ModulesMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/ModulesMapper.xml new file mode 100644 index 0000000..7526036 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/ModulesMapper.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + module_id, + parent_id, + module_name, + module_type, + module_index, + create_time, + update_time + + + + + + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/NewsHistoryMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/NewsHistoryMapper.xml new file mode 100644 index 0000000..2c1b05f --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/NewsHistoryMapper.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + history_id, + user_id, + op_type, + op_content, + create_time, + update_time + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/NewsMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/NewsMapper.xml new file mode 100644 index 0000000..0c8a2ce --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/NewsMapper.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + news_id, + news_title, + news_logo, + news_content, + module_id, + create_time, + update_time + + + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/NewsTagCollectionMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/NewsTagCollectionMapper.xml new file mode 100644 index 0000000..0b8cf2e --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/NewsTagCollectionMapper.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + collection_id, + tag_id, + news_id + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/NewsTagMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/NewsTagMapper.xml new file mode 100644 index 0000000..f33c862 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/NewsTagMapper.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + tag_id, + tag_name, + module_id, + create_time, + update_time + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/UserAdminMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/UserAdminMapper.xml new file mode 100644 index 0000000..31b26df --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/UserAdminMapper.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + user_admin_id, admin_name, admin_account, admin_pass, permission_level + + + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/UserMapper.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/UserMapper.xml new file mode 100644 index 0000000..011d5e2 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mapper/UserMapper.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + user_id, + card_id, + user_account, + user_password, + user_nick, + user_logo, + user_mobile, + user_email, + user_gender, + user_birthday, + create_time, + update_time + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mybatis-config.xml b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mybatis-config.xml new file mode 100644 index 0000000..de34fe5 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-business/src/main/resources/mybatis-config.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + diff --git a/JAVA_MYSQL_WEBSITE/gp-core/gp-core.iml b/JAVA_MYSQL_WEBSITE/gp-core/gp-core.iml new file mode 100644 index 0000000..9b479c8 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/gp-core.iml @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-core/pom.xml b/JAVA_MYSQL_WEBSITE/gp-core/pom.xml new file mode 100644 index 0000000..aba6751 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/pom.xml @@ -0,0 +1,102 @@ + + + 4.0.0 + + com.hc + gpwebv2 + 0.0.1-SNAPSHOT + + + gp-core + 0.0.1-SNAPSHOT + gp-core + Demo project for Spring Boot + + + 11 + + + + + + org.springframework.boot + spring-boot-starter-data-redis + + + + + org.springframework.boot + spring-boot-starter-validation + + + + org.apache.commons + commons-pool2 + + + + org.apache.commons + commons-lang3 + + + + commons-codec + commons-codec + + + + com.google.guava + guava + ${guava.version} + + + + + com.qiniu + qiniu-java-sdk + ${qiniu.version} + + + + + org.mybatis.spring.boot + mybatis-spring-boot-starter + ${mybatis.spring.boot.version} + + + + tk.mybatis + mapper + ${tk.mybatis.mapper.version} + + + + com.github.pagehelper + pagehelper-spring-boot-starter + ${pagehelper.spring.boot.version} + + + mybatis-spring-boot-starter + org.mybatis.spring.boot + + + + + + + com.auth0 + java-jwt + ${auth0.jwt.version} + + + + com.alibaba + fastjson + ${fastjson.version} + + + + + + diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/enums/ErrorEnum.java b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/enums/ErrorEnum.java new file mode 100644 index 0000000..b5d5ce1 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/enums/ErrorEnum.java @@ -0,0 +1,34 @@ +package com.hc.gpcore.enums; + +import lombok.Getter; + +/** + * @author JIA + * 自定义错误枚举类 + */ + +@Getter +public enum ErrorEnum { + + /* 系统级别 */ + + ERROR_REQUEST(100,"请求失败"), + ERROR_BAD_REQUEST(400,"请求语法错误"), + ERROR_UNAUTHORIZED(401,"未授权"), + ERROR_FORBIDDEN(403,"服务器拒绝请求"), + ERROR_NOT_FOUND(404,"请求资源不存在"), + ERROR_METHOD_NOT_AllOWED(405,"指定的请求方法,被禁用"), + ERROR_REQUEST_TIMEOUT(408,"请求超时"), + ERROR_REQUEST_ENTITY_TOO_LARGE(413,"请求实体过大,超出处理能力"), + ERROR_REQUEST_URI_TOO_LONG(414,"请求URL太长,拒绝访问") + + ; + private final Integer key; + private final String msg; + + ErrorEnum(Integer key, String msg) { + this.key = key; + this.msg = msg; + } + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/enums/InfoEnum.java b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/enums/InfoEnum.java new file mode 100644 index 0000000..784baf7 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/enums/InfoEnum.java @@ -0,0 +1,62 @@ +package com.hc.gpcore.enums; + +import lombok.Getter; + +/** + * @author JIA + * 自定义消息枚举类 + */ +@Getter +public enum InfoEnum { + + NULL_PARAMETER(400, "请求参数错误"), + + LOGIN_USER_NAME_ERROR(201, "无效的身份证号,请查证后再试"), + + DISTRICT_ERROR(201,"该属地未开放继续教育,请查证后再试"), + + DISTRICT_NO_ERROR(201,"您不属于此归属地,请前往指定区域报名入口"), + + COMPANY_LOGIN_ERROR(201,"单位名称或手机号错误,请查证后再试"), + + LOGIN_PASSWORD_ERROR(201, "密码错误,请重新输入"), + + LOGIN_REGISTER_RE(201,"用户已存在,不可重复注册"), + + TOKEN_EXPIRED(203, "token过期或token不存在"), + + AUTHCODE_ERROR(204,"验证码输入错误"), + + ORDERS_RE_ERROR(205,"订单已支付,请勿重复操作"), + + DISTRICT_COURSE_RE_ERROR(206,"此地区已配置此课程,请不要重复操作"), + + USER_COURSE_RE_ERROR(206,"此用户已拥有此课程,请不要重复操作"), + + DISTRICT_CONFIG_RE(207,"此地区已配置规则,请不要重复操作"), + + USER_CONFIG_RE(208,"用户配置已存在,请不要重复操作"), + + USER_INVOICES_ERROR(210,"此订单已申请发票,请不要重复操作"), + + USER_ORDER_REFUND(211,"此订单已申请退款,请不要重复操作"), + + TOKEN_ERROR(209,"非法token,禁止进入系统"), + + PAPER_ERROR(212,"此试卷已过期,请联系管理员重新设置"), + + COURSE_RELATION_ERROR(213,"此课程已有关联,请不要重复操作"), + + DISTRICT_COURSE_ERROR(214,"此地区暂无课程,请联系管理员") + + ; + + private final Integer key; + private final String msg; + + InfoEnum(Integer key, String msg) { + this.key = key; + this.msg = msg; + } + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/enums/SuccessEnum.java b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/enums/SuccessEnum.java new file mode 100644 index 0000000..0d5c931 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/enums/SuccessEnum.java @@ -0,0 +1,32 @@ +package com.hc.gpcore.enums; + +import lombok.Getter; + +/** + * @author JIA + * 自定义成功枚举类 + */ +@Getter +public enum SuccessEnum { + + /* 系统级别 */ + + SUCCESS_REQUEST(200, "服务请求成功"), + SUCCESS_CREATED(201, "请求成功,服务器创建资源"), + SUCCESS_ACCEPTED(202, "请求成功,服务器尚未处理"), + SUCCESS_NON_AUTHORITATIVE(203,"请求成功,信息非授权"), + SUCCESS_NO_CONTENT(204,"请求成功,无内容"), + SUCCESS_RESET_CONTENT(205,"请求成功,内容重置"), + SUCCESS_PARTIAL_CONTENT(206,"请求成功,部分内容已处理") + + ; + + private final Integer key; + private final String msg; + + SuccessEnum(Integer key, String msg) { + this.key = key; + this.msg = msg; + } + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/exception/ResponseException.java b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/exception/ResponseException.java new file mode 100644 index 0000000..1638e64 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/exception/ResponseException.java @@ -0,0 +1,32 @@ +package com.hc.gpcore.exception; + +import com.hc.gpcore.enums.InfoEnum; + +/** + * @author JIA + */ +public class ResponseException extends RuntimeException { + + private static final long serialVersionUID = 1L; + + private Integer code; + + public ResponseException(Integer code,String message){ + super(message); + this.code = code; + } + + public ResponseException(InfoEnum infoEnum){ + super(infoEnum.getMsg()); + this.code = infoEnum.getKey(); + } + + public Integer getCode() { + return code; + } + + public void setCode(Integer code) { + this.code = code; + } + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/exception/UserAuthorizeException.java b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/exception/UserAuthorizeException.java new file mode 100644 index 0000000..832624e --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/exception/UserAuthorizeException.java @@ -0,0 +1,8 @@ +package com.hc.gpcore.exception; + +import org.springframework.stereotype.Component; + +@Component +public class UserAuthorizeException extends RuntimeException { + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/oss/QiNiuUtil.java b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/oss/QiNiuUtil.java new file mode 100644 index 0000000..f6ad6a3 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/oss/QiNiuUtil.java @@ -0,0 +1,50 @@ +package com.hc.gpcore.utils.oss; + +import com.qiniu.util.Auth; +import lombok.Data; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; + +import java.util.HashMap; +import java.util.Map; +import java.util.Objects; + +/** + * @author JIA + */ + +@Data +@Component +public class QiNiuUtil { + + @Value("${oss.access-key}") + private String accessKey; + + @Value("${oss.secret-key}") + private String secretKey; + + @Value("${oss.bucket}") + private String bucket; + + @Value("${oss.file-domain}") + private String fileDomain; + + private Auth auth; + + private Auth getAuth() { + if (Objects.isNull(auth)) { + auth = Auth.create(getAccessKey(), getSecretKey()); + } + return auth; + } + + public Map getUpToken() { + Map map = new HashMap<>(2); + String upToken = getAuth().uploadToken(bucket); + map.put("upToken", upToken); + map.put("domain", fileDomain); + return map; + } + + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/redis/RedisUtil.java b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/redis/RedisUtil.java new file mode 100644 index 0000000..4b70394 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/redis/RedisUtil.java @@ -0,0 +1,595 @@ +package com.hc.gpcore.utils.redis; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.stereotype.Component; +import org.springframework.util.CollectionUtils; + +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.concurrent.TimeUnit; + +/** + * SpringData Redis工具类 + * + * @author JIA + */ +@Component +public class RedisUtil { + + private final RedisTemplate redisTemplate; + + @Autowired + public RedisUtil(RedisTemplate redisTemplate) { + this.redisTemplate = redisTemplate; + } + + /** + * 依据前缀获取key值 + * + * @param key + * @return + */ + public Set keys(String key) { + try { + return redisTemplate.keys(key); + } catch (Exception e) { + return null; + } + } + + /** + * 指定缓存失效时间 + * + * @param key + * @param time + * @return + */ + public boolean expire(String key, long time) { + try { + if (time > 0) { + redisTemplate.expire(key, time, TimeUnit.SECONDS); + } + return true; + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + /** + * 获得key 返回过期时间 + * + * @param key + * @return + */ + public long getExpire(String key) { + return redisTemplate.getExpire(key, TimeUnit.SECONDS); + } + + /** + * 判断key是否存在 + * + * @param key + * @return + */ + public boolean hasKey(String key) { + try { + return redisTemplate.hasKey(key); + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + /** + * 删除缓存 + * + * @param key + */ + public void del(String... key) { + if (key != null && key.length > 0) { + if (key.length == 1) { + redisTemplate.delete(key[0]); + } else { + redisTemplate.delete(CollectionUtils.arrayToList(key)); + } + } + } + + /*=============================String=====================================*/ + + /** + * 放入存储,不设置时间 + * + * @param key + * @param value + * @return + */ + public boolean set(String key, Object value) { + try { + redisTemplate.opsForValue().set(key, value); + return true; + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + /** + * 放入缓存,并设置时间 + * + * @param key + * @param value + * @param time + * @return + */ + + public boolean set(String key, Object value, long time) { + try { + if (time > 0) { + redisTemplate.opsForValue().set(key, value, time, TimeUnit.SECONDS); + } else { + set(key, value); + } + return true; + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + /** + * 依据key 获取缓存 + * + * @param key + * @return + */ + public Object get(String key) { + return key == null ? null : redisTemplate.opsForValue().get(key); + } + + /** + * 递增 + * + * @param key + * @param delta + * @return + */ + public long incr(String key, long delta) { + if (delta < 0) { + throw new RuntimeException("递增因子必须大于0"); + } + return redisTemplate.opsForValue().increment(key, delta); + + } + + /** + * 递减 + * + * @param key + * @param delta + * @return + */ + public long decr(String key, long delta) { + if (delta < 0) { + throw new RuntimeException("递减因子必须大于0"); + } + return redisTemplate.opsForValue().decrement(key, delta); + } + + + /*=============================Map==================================*/ + + /** + * HashMapGet获取所有键值 + * + * @param key + * @return + */ + public Map hashMapGet(String key) { + return redisTemplate.opsForHash().entries(key); + } + + + /** + * HashMap存入缓存 + * + * @param key + * @param map + * @return + */ + public boolean hashMapSet(String key, Map map) { + try { + redisTemplate.opsForHash().putAll(key, map); + return true; + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + /** + * hashMap存入缓存 并设置时间 + * + * @param key + * @param map + * @param time + * @return + */ + public boolean hashMapSet(String key, Map map, long time) { + try { + redisTemplate.opsForHash().putAll(key, map); + if (time > 0) { + expire(key, time); + } + return true; + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + /*=============================Hash=================================*/ + + /** + * HashGet获取 + * + * @param key + * @param item + * @return + */ + public Object hashGet(String key, String item) { + return redisTemplate.opsForHash().get(key, item); + } + + /** + * hash表中放入数据,如果不存在将创建 + * + * @param key + * @param item + * @param value + * @return + */ + public boolean hashSet(String key, String item, Object value) { + try { + redisTemplate.opsForHash().put(key, item, value); + return true; + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + /** + * hash表中放入数据,并设置时间,如果key值不存在,将创建 + * + * @param key + * @param item + * @param value + * @param time key值存在,时间将会被覆盖 + * @return + */ + public boolean hashSet(String key, String item, Object value, long time) { + try { + redisTemplate.opsForHash().put(key, item, value); + if (time > 0) { + expire(key, time); + } + return true; + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + /** + * 删除hash表中的值 + * + * @param key + * @param item + */ + public void hashDel(String key, Object... item) { + redisTemplate.opsForHash().delete(key, item); + } + + /** + * 判断hash表中是否有该项的值 + * + * @param key + * @param item + * @return + */ + public boolean hashHasKey(String key, String item) { + return redisTemplate.opsForHash().hasKey(key, item); + } + + /** + * hash递增,如果不存在,就会创建一个 + * + * @param key + * @param item + * @param br + * @return + */ + public Double hashIncr(String key, String item, double br) { + return redisTemplate.opsForHash().increment(key, item, br); + } + + /** + * hash递减 + * + * @param key + * @param item + * @param br + * @return + */ + public Double hashdecr(String key, String item, double br) { + return redisTemplate.opsForHash().increment(key, item, -br); + } + + /*==============================Set================================*/ + + /** + * 根据key获取Set中的所有值 + * + * @param key + * @return + */ + public Set setGet(String key) { + try { + return redisTemplate.opsForSet().members(key); + } catch (Exception e) { + e.printStackTrace(); + return null; + } + } + + /** + * 根据value从一个Set中查询,是否存在 + * + * @param key + * @param value + * @return true 存在 false 不存在 + */ + public boolean setHasKey(String key, Object value) { + try { + return redisTemplate.opsForSet().isMember(key, value); + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + /** + * 将数据放入set缓存 + * + * @param key + * @param values + * @return 成功个数 + */ + public long setSet(String key, Object... values) { + try { + return redisTemplate.opsForSet().add(key, values); + } catch (Exception e) { + e.printStackTrace(); + return 0; + } + } + + /** + * 将set数据放入缓存,并设置时间 + * + * @param key + * @param time + * @param values + * @return + */ + public long setSetAndTime(String key, long time, Object... values) { + try { + Long count = redisTemplate.opsForSet().add(key, values); + if (time > 0) { + expire(key, time); + } + return count; + } catch (Exception e) { + e.printStackTrace(); + return 0; + } + } + + /** + * 获取set缓存的长度 + * + * @param key + * @return + */ + public long setGetSetSize(String key) { + try { + return redisTemplate.opsForSet().size(key); + } catch (Exception e) { + e.printStackTrace(); + return 0; + } + } + + /** + * 移除值为value的 + * + * @param key + * @param values + * @return + */ + public long setRemove(String key, Object... values) { + try { + Long count = redisTemplate.opsForSet().remove(key, values); + return count; + } catch (Exception e) { + e.printStackTrace(); + return 0; + } + } + + /*============================list============================*/ + + /** + * 获取list集合缓存中的内容 + * + * @param key + * @param start 开始 + * @param end 结束 0和-1代表所有值 + * @return + */ + public List listGet(String key, long start, long end) { + try { + return redisTemplate.opsForList().range(key, start, end); + } catch (Exception e) { + e.printStackTrace(); + return null; + } + } + + /** + * 获取List缓存的长度 + * + * @param key + * @return + */ + public long listGetSize(String key) { + try { + return redisTemplate.opsForList().size(key); + } catch (Exception e) { + e.printStackTrace(); + return 0; + } + } + + /** + * 通过索引 获取list中的值 + * + * @param key + * @param index 0表头 -1表尾 + * @return + */ + public Object listGetIndex(String key, long index) { + try { + return redisTemplate.opsForList().index(key, index); + } catch (Exception e) { + e.printStackTrace(); + return null; + } + } + + /** + * 将List放入缓存中 + * + * @param key + * @param value + * @return + */ + public boolean listSet(String key, Object value) { + try { + redisTemplate.opsForList().rightPush(key, value); + return true; + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + /** + * list放入缓存并设置时间 + * + * @param key + * @param values + * @param time + * @return + */ + public boolean listSet(String key, Object values, long time) { + try { + redisTemplate.opsForList().rightPush(key, values); + if (time > 0) { + expire(key, time); + } + return true; + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + /** + * 将list放入缓存 + * + * @param key + * @param value + * @return + */ + public boolean listSet(String key, List value) { + try { + redisTemplate.opsForList().rightPushAll(key, value); + return true; + } catch (Exception e) { + return false; + } + } + + /** + * 将list放入缓存 + * + * @param key + * @param values + * @param time + * @return + */ + public boolean listSet(String key, List values, long time) { + try { + redisTemplate.opsForList().rightPushAll(key, values); + if (time > 0) { + expire(key, time); + } + return true; + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + /** + * 根据索引修改list中的某条数据 + * + * @param key + * @param index + * @param value + * @return + */ + public boolean listUpdateIndex(String key, long index, Object value) { + try { + redisTemplate.opsForList().set(key, index, value); + return true; + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + /** + * 移除多个值为value的 + * + * @param key + * @param count + * @param value + * @return + */ + public long listRemove(String key, long count, Object value) { + try { + Long remove = redisTemplate.opsForList().remove(key, count, value); + return remove; + } catch (Exception e) { + e.printStackTrace(); + return 0; + } + } + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/result/Result.java b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/result/Result.java new file mode 100644 index 0000000..8b92dbb --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/result/Result.java @@ -0,0 +1,83 @@ +package com.hc.gpcore.utils.result; + +import com.hc.gpcore.enums.InfoEnum; +import com.hc.gpcore.enums.SuccessEnum; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.io.Serializable; + + +/** + * @author JIA + */ +@Data +public class Result implements Serializable { + + private static final long serialVersionUID = 1L; + + + @ApiModelProperty(example = "200") + private Integer code; + + @ApiModelProperty(example = "服务请求成功") + private String msg; + + private T data; + + public Result() { + + } + + /** + * 请求成功 返回数据 + * + * @param object + * @param + * @return + */ + public static Result success(T object) { + Result result = new Result(); + result.setCode(SuccessEnum.SUCCESS_REQUEST.getKey()); + result.setMsg(SuccessEnum.SUCCESS_REQUEST.getMsg()); + result.setData(object); + return result; + } + + /** + * 请求成功 + * + * @return + */ + public static Result success() { + return success(null); + } + + /** + * 自定义信息返回 + * + * @param infoEnum + * @return + */ + public static Result info(InfoEnum infoEnum) { + Result result = new Result(); + result.setCode(infoEnum.getKey()); + result.setMsg(infoEnum.getMsg()); + return result; + } + + /** + * 自定义异常返回 + * + * @param key + * @param msg + * @return + */ + public static Result exception(Integer key, String msg) { + Result result = new Result(); + result.setCode(key); + result.setMsg(msg); + return result; + } + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tk/mapper/Mapper.java b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tk/mapper/Mapper.java new file mode 100644 index 0000000..4f9d996 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tk/mapper/Mapper.java @@ -0,0 +1,19 @@ +package com.hc.gpcore.utils.tk.mapper; + +import tk.mybatis.mapper.common.BaseMapper; +import tk.mybatis.mapper.common.ConditionMapper; +import tk.mybatis.mapper.common.IdsMapper; +import tk.mybatis.mapper.common.special.InsertListMapper; + +/** + * 定制版MyBatis Mapper插件接口,如需其他接口参考官方文档自行添加。 + * + * @author mybatis + */ +public interface Mapper + extends + BaseMapper, + ConditionMapper, + IdsMapper, + InsertListMapper { +} diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tool/Compute.java b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tool/Compute.java new file mode 100644 index 0000000..baec53f --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tool/Compute.java @@ -0,0 +1,95 @@ +package com.hc.gpcore.utils.tool; + +import java.math.BigDecimal; + +public class Compute { // 默认除法运算精度 + private static final int DEF_DIV_SCALE = 10; // 这个类不能实例化 + + private Compute() { + } + + /** + * 提供精确的加法运算。 + * + * @param v1 被加数 + * @param v2 加数 + * @return 两个参数的和 + */ + public static double add(double v1, double v2) { + BigDecimal b1 = new BigDecimal(Double.toString(v1)); + BigDecimal b2 = new BigDecimal(Double.toString(v2)); + return b1.add(b2).doubleValue(); + } + + /** + * 提供精确的减法运算。 + * + * @param v1 被减数 + * @param v2 减数 + * @return 两个参数的差 + */ + public static double sub(double v1, double v2) { + BigDecimal b1 = new BigDecimal(Double.toString(v1)); + BigDecimal b2 = new BigDecimal(Double.toString(v2)); + return b1.subtract(b2).doubleValue(); + } + + /** + * 提供精确的乘法运算。 + * + * @param v1 被乘数 + * @param v2 乘数 + * @return 两个参数的积 + */ + public static double mul(double v1, double v2) { + BigDecimal b1 = new BigDecimal(Double.toString(v1)); + BigDecimal b2 = new BigDecimal(Double.toString(v2)); + return b1.multiply(b2).doubleValue(); + } + + /** + * 提供(相对)精确的除法运算,当发生除不尽的情况时,精确到 小数点以后10位,以后的数字四舍五入。 + * + * @param v1 被除数 + * @param v2 除数 + * @return 两个参数的商 + */ + public static double div(double v1, double v2) { + return div(v1, v2, DEF_DIV_SCALE); + } + + /** + * 提供(相对)精确的除法运算。当发生除不尽的情况时,由scale参数指 定精度,以后的数字四舍五入。 + * + * @param v1 被除数 + * @param v2 除数 + * @param scale 表示表示需要精确到小数点以后几位。 + * @return 两个参数的商 + */ + public static double div(double v1, double v2, int scale) { + if (scale < 0) { + throw new IllegalArgumentException( + "The scale must be a positive integer or zero"); + } + BigDecimal b1 = new BigDecimal(Double.toString(v1)); + BigDecimal b2 = new BigDecimal(Double.toString(v2)); + return b1.divide(b2, scale, BigDecimal.ROUND_HALF_UP).doubleValue(); + } + + /** + * 提供精确的小数位四舍五入处理。 + * + * @param v 需要四舍五入的数字 + * @param scale 小数点后保留几位 + * @return 四舍五入后的结果 + */ + public static double round(double v, int scale) { + if (scale < 0) { + throw new IllegalArgumentException( + "The scale must be a positive integer or zero"); + } + BigDecimal b = new BigDecimal(Double.toString(v)); + BigDecimal one = new BigDecimal("1"); + return b.divide(one, scale, BigDecimal.ROUND_HALF_UP).doubleValue(); + } +} diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tool/IdGenerator.java b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tool/IdGenerator.java new file mode 100644 index 0000000..2429222 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tool/IdGenerator.java @@ -0,0 +1,139 @@ +package com.hc.gpcore.utils.tool; + +import java.math.BigInteger; +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.text.SimpleDateFormat; +import java.util.Date; +import java.util.Random; +import java.util.UUID; + +public class IdGenerator { + + public static String[] chars = new String[]{ + "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", + "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", + "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", + "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", + "O", "P", "Q", "R", "S", "T", "U", "V","W", "X", "Y", "Z" + }; + + /** + * 获取短UUID,保证在百万数量级唯一,长度为 8 位,例子(tbN7ru6S,2B6orRJp) + * 用途:短信验证码,重设的用户密码...等等,对长度比较敏感的 ID + * @return 字符串型 短UUID + */ + public static String getShortUuid(){ + StringBuffer stringBuffer = new StringBuffer(); + String uuid = UUID.randomUUID().toString().replace("-", ""); + for (int i = 0; i < 8; i++){ + String str = uuid.substring(i * 4, i * 4 + 4); + int strInteger = Integer.parseInt(str, 16); + stringBuffer.append(chars[strInteger % 0x3E]); //除62取余 + } + return stringBuffer.toString(); + } + + /** + * 获取 nano 时间因子作为时间ID,位数为 14 位数字 例子(89864091147334) + * 可以用作 数据库 中的 ID 字段 + * @return 字符串型 ID + */ + public static String getShortTimeId() { + String dateString = String.valueOf(System.nanoTime()); + return dateString; + } + + /** + * 获取 “日期时分秒 + nano 时间因子” 作为时间ID,位数为 28 位数字 例子(2017011223042793189007681236) + * 可以用作 数据库 中的 ID 字段 + * @return 字符串型 ID + */ + public static String getTimeId() { + SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss"); + String dateString = sdf.format(new Date()); + dateString += String.valueOf(System.nanoTime()); + return dateString; + } + + /** + * 获取标准的 uuid,长度为 32 位,例子(5d02334e-da48-4952-a168-ca19444efbe2) + * @return + */ + public static String getUuid() { + UUID uuid = UUID.randomUUID(); + return (uuid.toString()); + } + + /** + * 对字符串md5加密 + * + * @param str + * @return + */ + public static String getMD5(String str) { + try { + // 生成一个MD5加密计算摘要 + MessageDigest md = MessageDigest.getInstance("MD5"); + // 计算md5函数 + md.update(str.getBytes()); + // digest()最后确定返回md5 hash值,返回值为8为字符串。因为md5 hash值是16位的hex值,实际上就是8位的字符 + // BigInteger函数则将8位的字符串转换成16位hex值,用字符串来表示;得到字符串形式的hash值 + return new BigInteger(1, md.digest()).toString(16); + } catch (Exception e) { + return ""; + } + } + + /*** + * 密码hash加密 + * @param password + * @return + */ + public static String passwordToHash(String password) { + try { + MessageDigest digest = MessageDigest.getInstance("SHA-256"); + digest.update(password.getBytes()); + byte[] src = digest.digest(); + StringBuilder stringBuilder = new StringBuilder(); + // 字节数组转16进制字符串 + // https://my.oschina.net/u/347386/blog/182717 + for (byte aSrc : src) { + String s = Integer.toHexString(aSrc & 0xFF); + if (s.length() < 2) { + stringBuilder.append('0'); + } + stringBuilder.append(s); + } + return stringBuilder.toString(); + } catch (NoSuchAlgorithmException ignore) { + } + return null; + } + public static String getRandomPwd(){ + Random rd = new Random(); +// String n=""; + int getNum; + /** + do { + getNum = Math.abs(rd.nextInt())%10 + 48;//产生数字0-9的随机数 + //getNum = Math.abs(rd.nextInt())%26 + 97;//产生字母a-z的随机数 + char num1 = (char)getNum; + String dn = Character.toString(num1); + n += dn; + } while (n.length()<6); + */ + //改进效率 + StringBuffer buf = new StringBuffer(); + do { +// getNum = Math.abs(rd.nextInt())%10 + 48;//产生数字0-9的随机数 + getNum = Math.abs(rd.nextInt()%10) + 48;//产生数字0-9的随机数 + //getNum = Math.abs(rd.nextInt())%26 + 97;//产生字母a-z的随机数 + char num1 = (char)getNum; + String dn = Character.toString(num1); + buf.append(dn); + } while (buf.length()<6); + return buf.toString(); + } + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tool/JsonUtils.java b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tool/JsonUtils.java new file mode 100644 index 0000000..2dcdcab --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tool/JsonUtils.java @@ -0,0 +1,29 @@ +package com.hc.gpcore.utils.tool; + +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializationFeature; + +/** + * @author JIA + */ +public class JsonUtils { + + private static final ObjectMapper JSON = new ObjectMapper(); + + static { + JSON.setSerializationInclusion(JsonInclude.Include.NON_NULL); + JSON.configure(SerializationFeature.INDENT_OUTPUT, Boolean.TRUE); + } + + public static String toJson(Object obj) { + try { + return JSON.writeValueAsString(obj); + } catch (JsonProcessingException e) { + e.printStackTrace(); + } + + return null; + } +} diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tool/Verification.java b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tool/Verification.java new file mode 100644 index 0000000..12bb6fd --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/java/com/hc/gpcore/utils/tool/Verification.java @@ -0,0 +1,95 @@ +package com.hc.gpcore.utils.tool; + +import java.util.ArrayList; +import java.util.List; + +public class Verification { + + public static boolean verificationAndString(String ...args){ + + for(int i=0;i list){ + if ((null == list) || (list.isEmpty())) { + return false; + } + return true; + } + + public static List getReturnList(List list, int perPage,int page) { + /* + List newlist = new ArrayList<>(); + if((perPage <=0) || (page < 1) || (null == list) || (list.size() ==0)) { + return newlist; + } + + //超过范围 + if(((page-1) * perPage) > list.size()) { + return newlist; + } + + + for(int index = ((page-1) * perPage); index < (page * perPage);index ++){ + if(index >= list.size()){ + break; + } + newlist.add(list.get(index)); + + } + return newlist; + */ + + int start,end; + + if((perPage <=0) || (page < 1) || (null == list) || (list.size() ==0) || + (((page-1) * perPage) > list.size())) { + return new ArrayList<>(); + } + + start = (page-1) * perPage; + //这里subList是左闭右开的,不包括toindex的这个元素,所以如果是需要取最后一个元素,toindex+1 + end = ((start + perPage) >= list.size())?(list.size()-1+1):(start+perPage); + return list.subList(start, end); + } +} diff --git a/JAVA_MYSQL_WEBSITE/gp-core/src/main/resources/application.properties b/JAVA_MYSQL_WEBSITE/gp-core/src/main/resources/application.properties new file mode 100644 index 0000000..98ba8b8 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-core/src/main/resources/application.properties @@ -0,0 +1,7 @@ +#ţ +oss.access-key=IbM95nqve70SCvl0AYWPfmflAEVUvJx8o3S76NJ0 +oss.secret-key=1WucYYYpPx0u6Yx5cGnBcWPIv23y5okGiahefqKg +oss.bucket=test +oss.file-domain=http://test.hcinfos.cn + + diff --git a/JAVA_MYSQL_WEBSITE/gp-web/gp-web.iml b/JAVA_MYSQL_WEBSITE/gp-web/gp-web.iml new file mode 100644 index 0000000..09df4ae --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/gp-web.iml @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/pom.xml b/JAVA_MYSQL_WEBSITE/gp-web/pom.xml new file mode 100644 index 0000000..da39e36 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/pom.xml @@ -0,0 +1,88 @@ + + + 4.0.0 + + + com.hc + gpwebv2 + 0.0.1-SNAPSHOT + + + gp-web + 0.0.1-SNAPSHOT + gp-web + Demo project for Spring Boot + war + + + 11 + + + + + + mysql + mysql-connector-java + runtime + + + + org.springframework.boot + spring-boot-starter-jdbc + + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-starter-aop + + + + org.springframework.boot + spring-boot-starter-tomcat + provided + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.junit.vintage + junit-vintage-engine + + + + + + com.hc + gp-core + 0.0.1-SNAPSHOT + compile + + + + com.hc + gp-business + 0.0.1-SNAPSHOT + compile + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/GpWebApplication.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/GpWebApplication.java new file mode 100644 index 0000000..c997f60 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/GpWebApplication.java @@ -0,0 +1,20 @@ +package com.hc.gpweb; + +import com.spring4all.swagger.EnableSwagger2Doc; +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.context.annotation.ComponentScan; +import tk.mybatis.spring.annotation.MapperScan; + +@SpringBootApplication +@EnableSwagger2Doc +@ComponentScan("com.hc") +@MapperScan("com.hc.gpbusiness.mapper") +@org.mybatis.spring.annotation.MapperScan("com.hc.gpcore.utils.tk.mapper") +public class GpWebApplication { + + public static void main(String[] args) { + SpringApplication.run(GpWebApplication.class, args); + } + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/ServletInitializer.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/ServletInitializer.java new file mode 100644 index 0000000..d9b31d9 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/ServletInitializer.java @@ -0,0 +1,13 @@ +package com.hc.gpweb; + +import org.springframework.boot.builder.SpringApplicationBuilder; +import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; + +public class ServletInitializer extends SpringBootServletInitializer { + + @Override + protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { + return application.sources(GpWebApplication.class); + } + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/aspect/BackUserAspect.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/aspect/BackUserAspect.java new file mode 100644 index 0000000..b7e62ad --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/aspect/BackUserAspect.java @@ -0,0 +1,70 @@ +package com.hc.gpweb.aspect; + +import com.hc.gpcore.exception.UserAuthorizeException; +import com.hc.gpcore.utils.redis.RedisUtil; +import com.hc.gpcore.utils.tool.Verification; +import lombok.extern.slf4j.Slf4j; +import org.aspectj.lang.annotation.Aspect; +import org.aspectj.lang.annotation.Before; +import org.aspectj.lang.annotation.Pointcut; +import org.springframework.stereotype.Component; +import org.springframework.web.context.request.RequestContextHolder; +import org.springframework.web.context.request.ServletRequestAttributes; + +import javax.servlet.http.HttpServletRequest; +import java.util.Objects; + +/** + * @author JIA + */ + +@Aspect +@Component +@Slf4j +public class BackUserAspect { + + private final RedisUtil redisUtil; + + public BackUserAspect(RedisUtil redisUtil) { + this.redisUtil = redisUtil; + } + + + @Pointcut(" execution (public * com.hc.gpweb.controller.back..*.*(..))" + + "&& ! execution (public * com.hc.gpweb.controller.back.BackUserAdminController.userAdminLogin(..))" + ) + + public void verify() { + + } + + @Before("verify()") + public void doVerify() { + + //获取请求信息 + ServletRequestAttributes attributes = + (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); + HttpServletRequest request = Objects.requireNonNull(attributes).getRequest(); + +// //从请求头中获取token +// String token = request.getHeader("token"); +// +// if (!Objects.isNull(token)) { +// +// //身份识别 +// +// //获取redis中的token 查看token是否过期 +// if (Verification.verificationString((String) redisUtil.get(token))) { +// log.info("back 请求-token正常"); +// } else { +// log.info("back 请求-redis中的token已过期,请重新登录"); +// throw new UserAuthorizeException(); +// } +// +// } else { +// log.info("Back request-token is null"); +// throw new UserAuthorizeException(); +// } + } + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/config/CrossConfig.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/config/CrossConfig.java new file mode 100644 index 0000000..899dde0 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/config/CrossConfig.java @@ -0,0 +1,33 @@ +package com.hc.gpweb.config; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.web.cors.CorsConfiguration; +import org.springframework.web.cors.UrlBasedCorsConfigurationSource; +import org.springframework.web.filter.CorsFilter; + +import java.util.Collections; + +/** + * @author JIA + * 跨域 配置 + */ + +@Configuration +public class CrossConfig { + + @Bean + public CorsFilter corsFilter() { + final UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); + final CorsConfiguration configuration = new CorsConfiguration(); + + configuration.setAllowCredentials(true); + configuration.setAllowedOrigins(Collections.singletonList("*")); + configuration.setAllowedHeaders(Collections.singletonList("*")); + configuration.setAllowedMethods(Collections.singletonList("*")); + configuration.setMaxAge(300L); + + source.registerCorsConfiguration("/**", configuration); + return new CorsFilter(source); + } +} diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/BannerController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/BannerController.java new file mode 100644 index 0000000..17da1a5 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/BannerController.java @@ -0,0 +1,65 @@ +package com.hc.gpweb.controller.api; + +import com.hc.gpbusiness.model.Banner; +import com.hc.gpbusiness.service.BannerService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 广告表 + * (Banner)表控制层 + * + * @author java + * @since 2020-07-29 16:23:04 + */ + +@RestController +@RequestMapping("/api/banner") +public class BannerController { + + /** + * 服务对象 + */ + private final BannerService bannerService; + + public BannerController(BannerService bannerService) { + this.bannerService = bannerService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 Banner", response = Result.class) + public Result selectBanner(@PathVariable("id") Integer id) { + return Result.success(this.bannerService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 Banner", response = Result.class) + public Result addBanner(@Valid @RequestBody Banner banner) { + return Result.success(bannerService.insert(banner)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 Banner", response = Result.class) + public Result updateBanner(@RequestBody Banner banner) { + return Result.success(bannerService.update(banner)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 Banner", response = Result.class) + public Result deleteBanner(@PathVariable("id") Integer id) { + return Result.success(bannerService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 Banner列表(分页)", response = Result.class) + public Result listBanner(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size) { + return Result.success(bannerService.queryAllByLimit(page, size)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseChapterAnnexController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseChapterAnnexController.java new file mode 100644 index 0000000..27230fd --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseChapterAnnexController.java @@ -0,0 +1,64 @@ +package com.hc.gpweb.controller.api; + +import com.hc.gpbusiness.model.CourseChapterAnnex; +import com.hc.gpbusiness.service.CourseChapterAnnexService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 章节附件表(CourseChapterAnnex)表控制层 + * + * @author java + * @since 2020-07-29 16:23:07 + */ + +@RestController +@RequestMapping("/api/courseChapterAnnex") +public class CourseChapterAnnexController { + + /** + * 服务对象 + */ + private final CourseChapterAnnexService courseChapterAnnexService; + + public CourseChapterAnnexController(CourseChapterAnnexService courseChapterAnnexService) { + this.courseChapterAnnexService = courseChapterAnnexService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 CourseChapterAnnex", response = Result.class) + public Result selectCourseChapterAnnex(@PathVariable("id") Integer id) { + return Result.success(this.courseChapterAnnexService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 CourseChapterAnnex", response = Result.class) + public Result addCourseChapterAnnex(@Valid @RequestBody CourseChapterAnnex courseChapterAnnex) { + return Result.success(courseChapterAnnexService.insert(courseChapterAnnex)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 CourseChapterAnnex", response = Result.class) + public Result updateCourseChapterAnnex(@RequestBody CourseChapterAnnex courseChapterAnnex) { + return Result.success(courseChapterAnnexService.update(courseChapterAnnex)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 CourseChapterAnnex", response = Result.class) + public Result deleteCourseChapterAnnex(@PathVariable("id") Integer id) { + return Result.success(courseChapterAnnexService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 CourseChapterAnnex列表(分页)", response = Result.class) + public Result listCourseChapterAnnex(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size) { + return Result.success(courseChapterAnnexService.queryAllByLimit(page, size)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseChapterTagController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseChapterTagController.java new file mode 100644 index 0000000..1d324d7 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseChapterTagController.java @@ -0,0 +1,64 @@ +package com.hc.gpweb.controller.api; + +import com.hc.gpbusiness.model.CourseChapterTag; +import com.hc.gpbusiness.service.CourseChapterTagService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 图书章节标签表。新建完成的图书章节,可以根据讲师不同,给不同的章节打标签,比如基础阶段,进阶阶段。。。(CourseChapterTag)表控制层 + * + * @author java + * @since 2020-07-29 16:23:07 + */ + +@RestController +@RequestMapping("/api/courseChapterTag") +public class CourseChapterTagController { + + /** + * 服务对象 + */ + private final CourseChapterTagService courseChapterTagService; + + public CourseChapterTagController(CourseChapterTagService courseChapterTagService) { + this.courseChapterTagService = courseChapterTagService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 CourseChapterTag", response = Result.class) + public Result selectCourseChapterTag(@PathVariable("id") Integer id) { + return Result.success(this.courseChapterTagService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 CourseChapterTag", response = Result.class) + public Result addCourseChapterTag(@Valid @RequestBody CourseChapterTag courseChapterTag) { + return Result.success(courseChapterTagService.insert(courseChapterTag)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 CourseChapterTag", response = Result.class) + public Result updateCourseChapterTag(@RequestBody CourseChapterTag courseChapterTag) { + return Result.success(courseChapterTagService.update(courseChapterTag)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 CourseChapterTag", response = Result.class) + public Result deleteCourseChapterTag(@PathVariable("id") Integer id) { + return Result.success(courseChapterTagService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 CourseChapterTag列表(分页)", response = Result.class) + public Result listCourseChapterTag(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size) { + return Result.success(courseChapterTagService.queryAllByLimit(page, size)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseChapterTestController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseChapterTestController.java new file mode 100644 index 0000000..543fe02 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseChapterTestController.java @@ -0,0 +1,64 @@ +package com.hc.gpweb.controller.api; + +import com.hc.gpbusiness.model.CourseChapterTest; +import com.hc.gpbusiness.service.CourseChapterTestService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 章节测试表/随堂练习表(CourseChapterTest)表控制层 + * + * @author java + * @since 2020-07-29 16:23:08 + */ + +@RestController +@RequestMapping("/api/courseChapterTest") +public class CourseChapterTestController { + + /** + * 服务对象 + */ + private final CourseChapterTestService courseChapterTestService; + + public CourseChapterTestController(CourseChapterTestService courseChapterTestService) { + this.courseChapterTestService = courseChapterTestService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 CourseChapterTest", response = Result.class) + public Result selectCourseChapterTest(@PathVariable("id") Integer id) { + return Result.success(this.courseChapterTestService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 CourseChapterTest", response = Result.class) + public Result addCourseChapterTest(@Valid @RequestBody CourseChapterTest courseChapterTest) { + return Result.success(courseChapterTestService.insert(courseChapterTest)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 CourseChapterTest", response = Result.class) + public Result updateCourseChapterTest(@RequestBody CourseChapterTest courseChapterTest) { + return Result.success(courseChapterTestService.update(courseChapterTest)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 CourseChapterTest", response = Result.class) + public Result deleteCourseChapterTest(@PathVariable("id") Integer id) { + return Result.success(courseChapterTestService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 CourseChapterTest列表(分页)", response = Result.class) + public Result listCourseChapterTest(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size) { + return Result.success(courseChapterTestService.queryAllByLimit(page, size)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseTagCollectionController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseTagCollectionController.java new file mode 100644 index 0000000..55b5974 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseTagCollectionController.java @@ -0,0 +1,64 @@ +package com.hc.gpweb.controller.api; + +import com.hc.gpbusiness.model.CourseTagCollection; +import com.hc.gpbusiness.service.CourseTagCollectionService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 新闻标签,新闻对应表(CourseTagCollection)表控制层 + * + * @author java + * @since 2020-07-29 16:23:09 + */ + +@RestController +@RequestMapping("/api/courseTagCollection") +public class CourseTagCollectionController { + + /** + * 服务对象 + */ + private final CourseTagCollectionService courseTagCollectionService; + + public CourseTagCollectionController(CourseTagCollectionService courseTagCollectionService) { + this.courseTagCollectionService = courseTagCollectionService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 CourseTagCollection", response = Result.class) + public Result selectCourseTagCollection(@PathVariable("id") Integer id) { + return Result.success(this.courseTagCollectionService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 CourseTagCollection", response = Result.class) + public Result addCourseTagCollection(@Valid @RequestBody CourseTagCollection courseTagCollection) { + return Result.success(courseTagCollectionService.insert(courseTagCollection)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 CourseTagCollection", response = Result.class) + public Result updateCourseTagCollection(@RequestBody CourseTagCollection courseTagCollection) { + return Result.success(courseTagCollectionService.update(courseTagCollection)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 CourseTagCollection", response = Result.class) + public Result deleteCourseTagCollection(@PathVariable("id") Integer id) { + return Result.success(courseTagCollectionService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 CourseTagCollection列表(分页)", response = Result.class) + public Result listCourseTagCollection(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size) { + return Result.success(courseTagCollectionService.queryAllByLimit(page, size)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseTagController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseTagController.java new file mode 100644 index 0000000..f2845d8 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/CourseTagController.java @@ -0,0 +1,64 @@ +package com.hc.gpweb.controller.api; + +import com.hc.gpbusiness.model.CourseTag; +import com.hc.gpbusiness.service.CourseTagService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 课程标签表(CourseTag)表控制层 + * + * @author java + * @since 2020-07-29 16:23:09 + */ + +@RestController +@RequestMapping("/api/courseTag") +public class CourseTagController { + + /** + * 服务对象 + */ + private final CourseTagService courseTagService; + + public CourseTagController(CourseTagService courseTagService) { + this.courseTagService = courseTagService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 CourseTag", response = Result.class) + public Result selectCourseTag(@PathVariable("id") Integer id) { + return Result.success(this.courseTagService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 CourseTag", response = Result.class) + public Result addCourseTag(@Valid @RequestBody CourseTag courseTag) { + return Result.success(courseTagService.insert(courseTag)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 CourseTag", response = Result.class) + public Result updateCourseTag(@RequestBody CourseTag courseTag) { + return Result.success(courseTagService.update(courseTag)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 CourseTag", response = Result.class) + public Result deleteCourseTag(@PathVariable("id") Integer id) { + return Result.success(courseTagService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 CourseTag列表(分页)", response = Result.class) + public Result listCourseTag(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size) { + return Result.success(courseTagService.queryAllByLimit(page, size)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/NewsHistoryController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/NewsHistoryController.java new file mode 100644 index 0000000..8b234d4 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/NewsHistoryController.java @@ -0,0 +1,64 @@ +package com.hc.gpweb.controller.api; + +import com.hc.gpbusiness.model.NewsHistory; +import com.hc.gpbusiness.service.NewsHistoryService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 新闻操作记录表,比如转发,点评(NewsHistory)表控制层 + * + * @author java + * @since 2020-07-29 16:23:11 + */ + +@RestController +@RequestMapping("/api/newsHistory") +public class NewsHistoryController { + + /** + * 服务对象 + */ + private final NewsHistoryService newsHistoryService; + + public NewsHistoryController(NewsHistoryService newsHistoryService) { + this.newsHistoryService = newsHistoryService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 NewsHistory", response = Result.class) + public Result selectNewsHistory(@PathVariable("id") Integer id) { + return Result.success(this.newsHistoryService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 NewsHistory", response = Result.class) + public Result addNewsHistory(@Valid @RequestBody NewsHistory newsHistory) { + return Result.success(newsHistoryService.insert(newsHistory)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 NewsHistory", response = Result.class) + public Result updateNewsHistory(@RequestBody NewsHistory newsHistory) { + return Result.success(newsHistoryService.update(newsHistory)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 NewsHistory", response = Result.class) + public Result deleteNewsHistory(@PathVariable("id") Integer id) { + return Result.success(newsHistoryService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 NewsHistory列表(分页)", response = Result.class) + public Result listNewsHistory(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size) { + return Result.success(newsHistoryService.queryAllByLimit(page, size)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/NewsTagCollectionController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/NewsTagCollectionController.java new file mode 100644 index 0000000..13ae349 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/NewsTagCollectionController.java @@ -0,0 +1,64 @@ +package com.hc.gpweb.controller.api; + +import com.hc.gpbusiness.model.NewsTagCollection; +import com.hc.gpbusiness.service.NewsTagCollectionService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 新闻标签,新闻对应表(NewsTagCollection)表控制层 + * + * @author java + * @since 2020-07-29 16:23:12 + */ + +@RestController +@RequestMapping("/api/newsTagCollection") +public class NewsTagCollectionController { + + /** + * 服务对象 + */ + private final NewsTagCollectionService newsTagCollectionService; + + public NewsTagCollectionController(NewsTagCollectionService newsTagCollectionService) { + this.newsTagCollectionService = newsTagCollectionService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 NewsTagCollection", response = Result.class) + public Result selectNewsTagCollection(@PathVariable("id") Integer id) { + return Result.success(this.newsTagCollectionService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 NewsTagCollection", response = Result.class) + public Result addNewsTagCollection(@Valid @RequestBody NewsTagCollection newsTagCollection) { + return Result.success(newsTagCollectionService.insert(newsTagCollection)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 NewsTagCollection", response = Result.class) + public Result updateNewsTagCollection(@RequestBody NewsTagCollection newsTagCollection) { + return Result.success(newsTagCollectionService.update(newsTagCollection)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 NewsTagCollection", response = Result.class) + public Result deleteNewsTagCollection(@PathVariable("id") Integer id) { + return Result.success(newsTagCollectionService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 NewsTagCollection列表(分页)", response = Result.class) + public Result listNewsTagCollection(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size) { + return Result.success(newsTagCollectionService.queryAllByLimit(page, size)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/NewsTagController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/NewsTagController.java new file mode 100644 index 0000000..8c76d68 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/NewsTagController.java @@ -0,0 +1,64 @@ +package com.hc.gpweb.controller.api; + +import com.hc.gpbusiness.model.NewsTag; +import com.hc.gpbusiness.service.NewsTagService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 新闻标签表(NewsTag)表控制层 + * + * @author java + * @since 2020-07-29 16:23:11 + */ + +@RestController +@RequestMapping("/api/newsTag") +public class NewsTagController { + + /** + * 服务对象 + */ + private final NewsTagService newsTagService; + + public NewsTagController(NewsTagService newsTagService) { + this.newsTagService = newsTagService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 NewsTag", response = Result.class) + public Result selectNewsTag(@PathVariable("id") Integer id) { + return Result.success(this.newsTagService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 NewsTag", response = Result.class) + public Result addNewsTag(@Valid @RequestBody NewsTag newsTag) { + return Result.success(newsTagService.insert(newsTag)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 NewsTag", response = Result.class) + public Result updateNewsTag(@RequestBody NewsTag newsTag) { + return Result.success(newsTagService.update(newsTag)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 NewsTag", response = Result.class) + public Result deleteNewsTag(@PathVariable("id") Integer id) { + return Result.success(newsTagService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 NewsTag列表(分页)", response = Result.class) + public Result listNewsTag(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size) { + return Result.success(newsTagService.queryAllByLimit(page, size)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/UserController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/UserController.java new file mode 100644 index 0000000..6938795 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/api/UserController.java @@ -0,0 +1,64 @@ +package com.hc.gpweb.controller.api; + +import com.hc.gpbusiness.model.User; +import com.hc.gpbusiness.service.UserService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 用户表(User)表控制层 + * + * @author java + * @since 2020-07-29 16:23:12 + */ + +@RestController +@RequestMapping("/api/user") +public class UserController { + + /** + * 服务对象 + */ + private final UserService userService; + + public UserController(UserService userService) { + this.userService = userService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 User", response = Result.class) + public Result selectUser(@PathVariable("id") Integer id) { + return Result.success(this.userService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 User", response = Result.class) + public Result addUser(@Valid @RequestBody User user) { + return Result.success(userService.insert(user)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 User", response = Result.class) + public Result updateUser(@RequestBody User user) { + return Result.success(userService.update(user)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 User", response = Result.class) + public Result deleteUser(@PathVariable("id") Integer id) { + return Result.success(userService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 User列表(分页)", response = Result.class) + public Result listUser(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size) { + return Result.success(userService.queryAllByLimit(page, size)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackCourseChapterController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackCourseChapterController.java new file mode 100644 index 0000000..5e39d9f --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackCourseChapterController.java @@ -0,0 +1,65 @@ +package com.hc.gpweb.controller.back; + +import com.hc.gpbusiness.model.CourseChapter; +import com.hc.gpbusiness.service.CourseChapterService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 课程章节表(CourseChapter)表控制层 + * + * @author java + * @since 2020-07-29 16:23:06 + */ + +@RestController +@RequestMapping("/api/back/courseChapter") +public class BackCourseChapterController { + + /** + * 服务对象 + */ + private final CourseChapterService courseChapterService; + + public BackCourseChapterController(CourseChapterService courseChapterService) { + this.courseChapterService = courseChapterService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 CourseChapter", response = Result.class) + public Result selectBackCourseChapter(@PathVariable("id") Integer id) { + return Result.success(this.courseChapterService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 CourseChapter", response = Result.class) + public Result addBackCourseChapter(@Valid @RequestBody CourseChapter courseChapter) { + return Result.success(courseChapterService.insert(courseChapter)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 CourseChapter", response = Result.class) + public Result updateBackCourseChapter(@RequestBody CourseChapter courseChapter) { + return Result.success(courseChapterService.update(courseChapter)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 CourseChapter", response = Result.class) + public Result deleteBackCourseChapter(@PathVariable("id") Integer id) { + return Result.success(courseChapterService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 CourseChapter列表(分页)", response = Result.class) + public Result listBackCourseChapter(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size, + @RequestParam Integer courseId) { + return Result.success(courseChapterService.queryAllByLimit(page, size, courseId)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackCourseChapterVideoController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackCourseChapterVideoController.java new file mode 100644 index 0000000..269b32c --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackCourseChapterVideoController.java @@ -0,0 +1,65 @@ +package com.hc.gpweb.controller.back; + +import com.hc.gpbusiness.model.CourseChapterVideo; +import com.hc.gpbusiness.service.CourseChapterVideoService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 课程视频(CourseChapterVideo)表控制层 + * + * @author java + * @since 2020-07-29 16:23:08 + */ + +@RestController +@RequestMapping("/api/back/courseChapterVideo") +public class BackCourseChapterVideoController { + + /** + * 服务对象 + */ + private final CourseChapterVideoService courseChapterVideoService; + + public BackCourseChapterVideoController(CourseChapterVideoService courseChapterVideoService) { + this.courseChapterVideoService = courseChapterVideoService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 CourseChapterVideo", response = Result.class) + public Result selectBackCourseChapterVideo(@PathVariable("id") Integer id) { + return Result.success(this.courseChapterVideoService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 CourseChapterVideo", response = Result.class) + public Result addBackCourseChapterVideo(@Valid @RequestBody CourseChapterVideo courseChapterVideo) { + return Result.success(courseChapterVideoService.insert(courseChapterVideo)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 CourseChapterVideo", response = Result.class) + public Result updateBackCourseChapterVideo(@RequestBody CourseChapterVideo courseChapterVideo) { + return Result.success(courseChapterVideoService.update(courseChapterVideo)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 CourseChapterVideo", response = Result.class) + public Result deleteBackCourseChapterVideo(@PathVariable("id") Integer id) { + return Result.success(courseChapterVideoService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 CourseChapterVideo列表(分页)", response = Result.class) + public Result listBackCourseChapterVideo(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size, + @RequestParam Integer chapterId) { + return Result.success(courseChapterVideoService.queryAllByLimit(page, size, chapterId)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackCourseController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackCourseController.java new file mode 100644 index 0000000..5b56679 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackCourseController.java @@ -0,0 +1,66 @@ +package com.hc.gpweb.controller.back; + + +import com.hc.gpbusiness.model.Course; +import com.hc.gpbusiness.service.CourseService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 课程表(Course)表控制层 + * + * @author java + * @since 2020-07-29 16:23:06 + */ + +@RestController +@RequestMapping("/api/back/course") +public class BackCourseController { + + /** + * 服务对象 + */ + private final CourseService courseService; + + public BackCourseController(CourseService courseService) { + this.courseService = courseService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 Course", response = Result.class) + public Result selectBackCourse(@PathVariable("id") Integer id) { + return Result.success(this.courseService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 Course", response = Result.class) + public Result addBackCourse(@Valid @RequestBody Course course) { + return Result.success(courseService.insert(course)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 Course", response = Result.class) + public Result updateBackCourse(@RequestBody Course course) { + return Result.success(courseService.update(course)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 Course", response = Result.class) + public Result deleteBackCourse(@PathVariable("id") Integer id) { + return Result.success(courseService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 Course列表(分页)", response = Result.class) + public Result listBackCourse(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size, + @RequestParam Integer moduleId) { + return Result.success(courseService.queryAllByLimit(page, size, moduleId)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackModulesController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackModulesController.java new file mode 100644 index 0000000..00cb46b --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackModulesController.java @@ -0,0 +1,65 @@ +package com.hc.gpweb.controller.back; + + +import com.hc.gpbusiness.model.Modules; +import com.hc.gpbusiness.service.ModulesService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 板块表(Module)表控制层 + * + * @author java + * @since 2020-07-29 16:23:10 + */ + +@RestController +@RequestMapping("/api/back/module") +public class BackModulesController { + + /** + * 服务对象 + */ + private final ModulesService moduleService; + + public BackModulesController(ModulesService moduleService) { + this.moduleService = moduleService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 Module", response = Result.class) + public Result selectBackModules(@PathVariable("id") Integer id) { + return Result.success(this.moduleService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 Module", response = Result.class) + public Result addBackModules(@Valid @RequestBody Modules modules) { + return Result.success(moduleService.insert(modules)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 Module", response = Result.class) + public Result updateBackModules(@RequestBody Modules modules) { + return Result.success(moduleService.update(modules)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 Module", response = Result.class) + public Result deleteBackModules(@PathVariable("id") Integer id) { + return Result.success(moduleService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 Module列表(分页)", response = Result.class) + public Result listBackModules(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size) { + return Result.success(moduleService.queryAllByLimit(page, size)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackNewsController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackNewsController.java new file mode 100644 index 0000000..95d381b --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackNewsController.java @@ -0,0 +1,66 @@ +package com.hc.gpweb.controller.back; + +import com.hc.gpbusiness.model.News; +import com.hc.gpbusiness.service.NewsService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 新闻表 + * (News)表控制层 + * + * @author java + * @since 2020-07-29 16:23:10 + */ + +@RestController +@RequestMapping("/api/back/news") +public class BackNewsController { + + /** + * 服务对象 + */ + private final NewsService newsService; + + public BackNewsController(NewsService newsService) { + this.newsService = newsService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 News", response = Result.class) + public Result selectBackNews(@PathVariable("id") Integer id) { + return Result.success(this.newsService.queryById(id)); + } + + @PostMapping("/insert") + @ApiOperation(value = "新增 News", response = Result.class) + public Result addBackNews(@Valid @RequestBody News news) { + return Result.success(newsService.insert(news)); + } + + @PutMapping("/update") + @ApiOperation(value = "修改 News", response = Result.class) + public Result updateBackNews(@RequestBody News news) { + return Result.success(newsService.update(news)); + } + + @DeleteMapping("/delete/{id}") + @ApiOperation(value = "依据主键删除 News", response = Result.class) + public Result deleteBackNews(@PathVariable("id") Integer id) { + return Result.success(newsService.deleteById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 News列表(分页)", response = Result.class) + public Result listBackNews(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size, + @RequestParam Integer moduleId) { + return Result.success(newsService.queryAllByLimit(page, size, moduleId)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackUserAdminController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackUserAdminController.java new file mode 100644 index 0000000..5956bf1 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/back/BackUserAdminController.java @@ -0,0 +1,44 @@ +package com.hc.gpweb.controller.back; + +import com.hc.gpbusiness.model.login.AuthEntity; +import com.hc.gpbusiness.service.UserAdminService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + +/** + * 管理员表(UserAdmin)表控制层 + * + * @author java + * @since 2020-05-29 16:06:50 + */ + +@RestController +@RequestMapping("/api/back/userAdmin") +public class BackUserAdminController { + + /** + * 服务对象 + */ + private final UserAdminService userAdminService; + + public BackUserAdminController(UserAdminService userAdminService) { + this.userAdminService = userAdminService; + } + + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 UserAdmin", response = Result.class) + public Result selectBackUserAdmin(@PathVariable("id") Integer id) { + return Result.success(userAdminService.queryById(id)); + } + + @PostMapping("/login") + @ApiOperation(value = "后台管理员登录", response = Result.class) + public Result userAdminLogin(@Valid @RequestBody AuthEntity authEntity) { + return Result.success(userAdminService.userAdminLogin(authEntity)); + } + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/common/CommonController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/common/CommonController.java new file mode 100644 index 0000000..05ea807 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/common/CommonController.java @@ -0,0 +1,33 @@ +package com.hc.gpweb.controller.common; + +import com.hc.gpcore.utils.oss.QiNiuUtil; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + * @author JIA + */ + +@RestController +@RequestMapping("/api/common") +public class CommonController { + + private final QiNiuUtil qiNiuUtil; + + @Autowired + public CommonController(QiNiuUtil qiNiuUtil) { + this.qiNiuUtil = qiNiuUtil; + } + + @GetMapping("/upToken") + @ApiOperation(value = "", response = Result.class) + public Result getUpToken() { + return Result.success(qiNiuUtil.getUpToken()); + } + +} + diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontCourseChapterController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontCourseChapterController.java new file mode 100644 index 0000000..4adb2a1 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontCourseChapterController.java @@ -0,0 +1,47 @@ +package com.hc.gpweb.controller.front; + +import com.hc.gpbusiness.model.CourseChapter; +import com.hc.gpbusiness.service.CourseChapterService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 课程章节表(CourseChapter)表控制层 + * + * @author java + * @since 2020-07-29 16:23:06 + */ + +@RestController +@RequestMapping("/api/front/courseChapter") +public class FrontCourseChapterController { + + /** + * 服务对象 + */ + private final CourseChapterService courseChapterService; + + public FrontCourseChapterController(CourseChapterService courseChapterService) { + this.courseChapterService = courseChapterService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 CourseChapter", response = Result.class) + public Result selectCourseChapter(@PathVariable("id") Integer id) { + return Result.success(this.courseChapterService.queryById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 CourseChapter列表(分页)", response = Result.class) + public Result listCourseChapter(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size, + @RequestParam Integer courseId) { + return Result.success(courseChapterService.queryAllByLimit(page, size, courseId)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontCourseChapterVideoController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontCourseChapterVideoController.java new file mode 100644 index 0000000..f0aad91 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontCourseChapterVideoController.java @@ -0,0 +1,47 @@ +package com.hc.gpweb.controller.front; + +import com.hc.gpbusiness.model.CourseChapterVideo; +import com.hc.gpbusiness.service.CourseChapterVideoService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 课程视频(CourseChapterVideo)表控制层 + * + * @author java + * @since 2020-07-29 16:23:08 + */ + +@RestController +@RequestMapping("/api/front/courseChapterVideo") +public class FrontCourseChapterVideoController { + + /** + * 服务对象 + */ + private final CourseChapterVideoService courseChapterVideoService; + + public FrontCourseChapterVideoController(CourseChapterVideoService courseChapterVideoService) { + this.courseChapterVideoService = courseChapterVideoService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 CourseChapterVideo", response = Result.class) + public Result selectCourseChapterVideo(@PathVariable("id") Integer id) { + return Result.success(this.courseChapterVideoService.queryById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 CourseChapterVideo列表(分页)", response = Result.class) + public Result listCourseChapterVideo(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size, + @RequestParam Integer chapterId) { + return Result.success(courseChapterVideoService.queryAllByLimit(page, size, chapterId)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontCourseController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontCourseController.java new file mode 100644 index 0000000..0011682 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontCourseController.java @@ -0,0 +1,48 @@ +package com.hc.gpweb.controller.front; + + +import com.hc.gpbusiness.model.Course; +import com.hc.gpbusiness.service.CourseService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 课程表(Course)表控制层 + * + * @author java + * @since 2020-07-29 16:23:06 + */ + +@RestController +@RequestMapping("/api/front/course") +public class FrontCourseController { + + /** + * 服务对象 + */ + private final CourseService courseService; + + public FrontCourseController(CourseService courseService) { + this.courseService = courseService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 Course", response = Result.class) + public Result selectCourse(@PathVariable("id") Integer id) { + return Result.success(this.courseService.queryById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 Course列表(分页)", response = Result.class) + public Result listCourse(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size, + @RequestParam Integer moduleId) { + return Result.success(courseService.queryAllByLimit(page, size, moduleId)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontModulesController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontModulesController.java new file mode 100644 index 0000000..edc275b --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontModulesController.java @@ -0,0 +1,45 @@ +package com.hc.gpweb.controller.front; + +import com.hc.gpbusiness.service.ModulesService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 板块表(Module)表控制层 + * + * @author java + * @since 2020-07-29 16:23:10 + */ + +@RestController +@RequestMapping("/api/front/module") +public class FrontModulesController { + + /** + * 服务对象 + */ + private final ModulesService moduleService; + + public FrontModulesController(ModulesService moduleService) { + this.moduleService = moduleService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 Module", response = Result.class) + public Result selectModule(@PathVariable("id") Integer id) { + return Result.success(this.moduleService.queryById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 Module列表(分页)", response = Result.class) + public Result listModule(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size) { + return Result.success(moduleService.queryAllByLimit(page, size)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontNewsController.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontNewsController.java new file mode 100644 index 0000000..fb80f85 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/controller/front/FrontNewsController.java @@ -0,0 +1,48 @@ +package com.hc.gpweb.controller.front; + +import com.hc.gpbusiness.model.News; +import com.hc.gpbusiness.service.NewsService; +import com.hc.gpcore.utils.result.Result; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + + +/** + * 新闻表 + * (News)表控制层 + * + * @author java + * @since 2020-07-29 16:23:10 + */ + +@RestController +@RequestMapping("/api/front/news") +public class FrontNewsController { + + /** + * 服务对象 + */ + private final NewsService newsService; + + public FrontNewsController(NewsService newsService) { + this.newsService = newsService; + } + + @GetMapping("/{id}") + @ApiOperation(value = "依据主键获取 News", response = Result.class) + public Result selectNews(@PathVariable("id") Integer id) { + return Result.success(this.newsService.queryById(id)); + } + + @GetMapping("/list") + @ApiOperation(value = "获取 News列表(分页)", response = Result.class) + public Result listNews(@RequestParam(defaultValue = "0") Integer page, + @RequestParam(defaultValue = "0") Integer size, + @RequestParam Integer moduleId) { + return Result.success(newsService.queryAllByLimit(page, size, moduleId)); + } + + +} \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/handler/ExceptionResultHandler.java b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/handler/ExceptionResultHandler.java new file mode 100644 index 0000000..a765f5d --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/java/com/hc/gpweb/handler/ExceptionResultHandler.java @@ -0,0 +1,114 @@ +package com.hc.gpweb.handler; + + +import com.hc.gpcore.enums.InfoEnum; +import com.hc.gpcore.exception.ResponseException; +import com.hc.gpcore.exception.UserAuthorizeException; +import com.hc.gpcore.utils.result.Result; +import org.springframework.http.HttpStatus; +import org.springframework.jdbc.UncategorizedSQLException; +import org.springframework.validation.BindingResult; +import org.springframework.validation.FieldError; +import org.springframework.web.bind.MethodArgumentNotValidException; +import org.springframework.web.bind.MissingServletRequestParameterException; +import org.springframework.web.bind.annotation.ExceptionHandler; +import org.springframework.web.bind.annotation.ResponseBody; +import org.springframework.web.bind.annotation.ResponseStatus; +import org.springframework.web.bind.annotation.RestControllerAdvice; + +import javax.validation.ConstraintViolation; +import javax.validation.ConstraintViolationException; +import java.util.Set; + +/** + * @author JIA + */ + +@RestControllerAdvice +public class ExceptionResultHandler { + + + @ExceptionHandler(MethodArgumentNotValidException.class) + @ResponseStatus(HttpStatus.OK) + @ResponseBody + public Result handleMethodArgumentNotValidException(MethodArgumentNotValidException exception) { + StringBuilder errorInfo = new StringBuilder(); + BindingResult bindingResult = exception.getBindingResult(); + for (int i = 0; i < bindingResult.getFieldErrors().size(); i++) { + if (i > 0) { + errorInfo.append(","); + } + FieldError fieldError = bindingResult.getFieldErrors().get(i); + errorInfo.append(fieldError.getField()).append(" :").append(fieldError.getDefaultMessage()); + } + + //返回BaseResponse + Result response = new Result(); + response.setMsg(errorInfo.toString()); + response.setCode(401); + return response; + } + + @ExceptionHandler(MissingServletRequestParameterException.class) + @ResponseStatus(HttpStatus.BAD_REQUEST) + public Result handleRequestParameterException(MissingServletRequestParameterException e) { + return Result.exception(HttpStatus.BAD_REQUEST.value(), e.getMessage()); + } + + @ExceptionHandler(ConstraintViolationException.class) + @ResponseStatus(HttpStatus.BAD_REQUEST) + @ResponseBody + public Result handleConstraintViolationException(ConstraintViolationException exception) { + StringBuilder errorInfo = new StringBuilder(); + String errorMessage; + + Set> violations = exception.getConstraintViolations(); + for (ConstraintViolation item : violations) { + errorInfo.append(item.getMessage()).append(","); + } + errorMessage = errorInfo.toString().substring(0, errorInfo.toString().length() - 1); + + //返回BaseResponse + Result response = new Result(); + response.setMsg(errorMessage); + response.setCode(402); + return response; + } + + + @ExceptionHandler(ResponseException.class) + @ResponseStatus(HttpStatus.OK) + @ResponseBody + public Result handleResponseException(ResponseException e) { + return Result.exception(e.getCode(), e.getMessage()); + } + + @ExceptionHandler(UncategorizedSQLException.class) + @ResponseBody + @ResponseStatus(HttpStatus.NOT_FOUND) + public Result handleSqlException(UncategorizedSQLException e) { + return Result.exception(e.hashCode(), e.getCause().toString()); + } + + @ExceptionHandler(NullPointerException.class) + @ResponseBody + @ResponseStatus(HttpStatus.BAD_REQUEST) + public Result handleNullPointerException(NullPointerException e) { + return Result.exception(HttpStatus.BAD_REQUEST.value(), e.getMessage()); + } + + @ExceptionHandler(UserAuthorizeException.class) + @ResponseBody + @ResponseStatus(HttpStatus.NON_AUTHORITATIVE_INFORMATION) + public Result handlerAuthorizeException() { + return Result.exception(InfoEnum.TOKEN_EXPIRED.getKey(), InfoEnum.TOKEN_EXPIRED.getMsg()); + } + + @ExceptionHandler(Exception.class) + @ResponseBody + @ResponseStatus(HttpStatus.BAD_REQUEST) + public Result handleException(Exception e) { + return Result.exception(-1, e.getMessage()); + } + +} diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/resources/application-dev.yml b/JAVA_MYSQL_WEBSITE/gp-web/src/main/resources/application-dev.yml new file mode 100644 index 0000000..d6958e1 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/resources/application-dev.yml @@ -0,0 +1,21 @@ +spring: + profiles: dev + datasource: + url: jdbc:mysql://127.0.0.1:3306/gpwebv2?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=UTC&allowMultiQueries=true&nullCatalogMeansCurrent=true&rewriteBatchedStatements=true + username: root + password: 123456 + redis: + host: 47.104.62.154 + database: 2 + port: 6379 + password: mypass + timeout: 5000ms + lettuce: + pool: + max-idle: 2000 + max-active: 10 + max-wait: -1ms + min-idle: 0 + +server: + port: 8080 diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/resources/application-pro.yml b/JAVA_MYSQL_WEBSITE/gp-web/src/main/resources/application-pro.yml new file mode 100644 index 0000000..18cb40b --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/resources/application-pro.yml @@ -0,0 +1,21 @@ +spring: + profiles: pro + datasource: + url: jdbc:mysql://47.104.62.154:3306/gpwebv2?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=UTC&allowMultiQueries=true&nullCatalogMeansCurrent=true&rewriteBatchedStatements=true + username: root + password: 123456 + redis: + host: 47.104.62.154 + database: 2 + port: 6379 + password: mypass + timeout: 5000ms + lettuce: + pool: + max-idle: 2000 + max-active: 10 + max-wait: -1ms + min-idle: 0 + +server: + port: 8080 diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/main/resources/application.yml b/JAVA_MYSQL_WEBSITE/gp-web/src/main/resources/application.yml new file mode 100644 index 0000000..dce0eeb --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/main/resources/application.yml @@ -0,0 +1,35 @@ +spring: + application: + name: gpwebv2 + resources: + static-locations: classpath:/static/,classpath:/resources/ + profiles: + active: dev + datasource: + driver-class-name: com.mysql.cj.jdbc.Driver + type: com.zaxxer.hikari.HikariDataSource + +mybatis: + type-aliases-package: com.hc.gpbusiness.model + mapper-locations: classpath:mapper/*.xml + config-location: classpath:mybatis-config.xml + +swagger: + enabled: true + docket: + api: + title: API + version: V1.0 + basePackage: com.hc.gpweb.controller.api + back: + title: Back API + version: V1.0 + basePackage: com.hc.gpweb.controller.back + front: + title: Front API + version: V1.0 + basePackage: com.hc.gpweb.controller.front + + + + diff --git a/JAVA_MYSQL_WEBSITE/gp-web/src/test/java/com/hc/gpweb/GpWebApplicationTests.java b/JAVA_MYSQL_WEBSITE/gp-web/src/test/java/com/hc/gpweb/GpWebApplicationTests.java new file mode 100644 index 0000000..dd58700 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gp-web/src/test/java/com/hc/gpweb/GpWebApplicationTests.java @@ -0,0 +1,14 @@ +package com.hc.gpweb; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class GpWebApplicationTests { + + @Test + void contextLoads() { + + } + +} diff --git a/JAVA_MYSQL_WEBSITE/gpwebv2.iml b/JAVA_MYSQL_WEBSITE/gpwebv2.iml new file mode 100644 index 0000000..9e55495 --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/gpwebv2.iml @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/JAVA_MYSQL_WEBSITE/pom.xml b/JAVA_MYSQL_WEBSITE/pom.xml new file mode 100644 index 0000000..1e1c48d --- /dev/null +++ b/JAVA_MYSQL_WEBSITE/pom.xml @@ -0,0 +1,81 @@ + + + 4.0.0 + + + org.springframework.boot + spring-boot-starter-parent + 2.2.9.RELEASE + + + + com.hc + gpwebv2 + 0.0.1-SNAPSHOT + gpwebv2 + pom + Demo project for Spring Boot + + + 11 + UTF-8 + 1.9.0.RELEASE + [7.2.0, 7.2.99] + 3.3.0 + 23.0 + 2.1.2 + 4.0.4 + 1.2.9 + 1.2.70 + + + + gp-business + gp-core + gp-web + + + + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.springframework.boot + spring-boot-starter + + + + org.springframework.boot + spring-boot-devtools + runtime + true + + + + org.springframework.boot + spring-boot-configuration-processor + true + + + + org.projectlombok + lombok + true + + + + + com.spring4all + swagger-spring-boot-starter + ${spring4all.swagger.version} + + + + + + +