wangliang 4 жил өмнө
parent
commit
382208eb3d

+ 0 - 110
teachcloud-report-business/src/main/java/com/qmth/teachcloud/report/business/entity/TBSchool.java

@@ -1,110 +0,0 @@
-package com.qmth.teachcloud.report.business.entity;
-
-import com.baomidou.mybatisplus.annotation.TableField;
-import com.qmth.teachcloud.report.business.base.BaseEntity;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-
-import java.io.Serializable;
-
-/**
- * <p>
- * 学校基础表
- * </p>
- *
- * @author wangliang
- * @since 2021-06-01
- */
-@ApiModel(value = "TBSchool对象", description = "学校基础表")
-public class TBSchool extends BaseEntity implements Serializable {
-
-    private static final long serialVersionUID = 1L;
-
-    @ApiModelProperty(value = "学校编号")
-    @TableField(value = "code")
-    private String code;
-
-    @ApiModelProperty(value = "学校名称")
-    @TableField(value = "name")
-    private String name;
-
-    @ApiModelProperty(value = "是否启用,false:停用,true:启用")
-    @TableField(value = "enable")
-    private Boolean enable;
-
-    @ApiModelProperty(value = "访问key")
-    @TableField(value = "access_key")
-    private String accessKey;
-
-    @ApiModelProperty(value = "访问secret")
-    @TableField(value = "access_secret")
-    private String accessSecret;
-
-    @ApiModelProperty(value = "备注")
-    @TableField(value = "remark")
-    private String remark;
-
-    @ApiModelProperty(value = "学校logo")
-    @TableField(value = "logo")
-    private String logo;
-
-    public static long getSerialVersionUID() {
-        return serialVersionUID;
-    }
-
-    public String getCode() {
-        return code;
-    }
-
-    public void setCode(String code) {
-        this.code = code;
-    }
-
-    public String getName() {
-        return name;
-    }
-
-    public void setName(String name) {
-        this.name = name;
-    }
-
-    public String getAccessKey() {
-        return accessKey;
-    }
-
-    public void setAccessKey(String accessKey) {
-        this.accessKey = accessKey;
-    }
-
-    public String getAccessSecret() {
-        return accessSecret;
-    }
-
-    public void setAccessSecret(String accessSecret) {
-        this.accessSecret = accessSecret;
-    }
-
-    public String getRemark() {
-        return remark;
-    }
-
-    public void setRemark(String remark) {
-        this.remark = remark;
-    }
-
-    public String getLogo() {
-        return logo;
-    }
-
-    public void setLogo(String logo) {
-        this.logo = logo;
-    }
-
-    public void setEnable(Boolean enable) {
-        this.enable = enable;
-    }
-
-    public Boolean getEnable() {
-        return enable;
-    }
-}

+ 0 - 16
teachcloud-report-business/src/main/java/com/qmth/teachcloud/report/business/mapper/TBSchoolCourseMapper.java

@@ -1,16 +0,0 @@
-package com.qmth.teachcloud.report.business.mapper;
-
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.qmth.teachcloud.report.business.entity.TBSchoolCourse;
-
-/**
- * <p>
- * 课程基础表 Mapper 接口
- * </p>
- *
- * @author wangliang
- * @since 2021-06-01
- */
-public interface TBSchoolCourseMapper extends BaseMapper<TBSchoolCourse> {
-
-}

+ 0 - 16
teachcloud-report-business/src/main/java/com/qmth/teachcloud/report/business/mapper/TBSchoolMapper.java

@@ -1,16 +0,0 @@
-package com.qmth.teachcloud.report.business.mapper;
-
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.qmth.teachcloud.report.business.entity.TBSchool;
-
-/**
- * <p>
- * 学校基础表 Mapper 接口
- * </p>
- *
- * @author wangliang
- * @since 2021-06-01
- */
-public interface TBSchoolMapper extends BaseMapper<TBSchool> {
-
-}

+ 0 - 16
teachcloud-report-business/src/main/java/com/qmth/teachcloud/report/business/service/TBSchoolCourseService.java

@@ -1,16 +0,0 @@
-package com.qmth.teachcloud.report.business.service;
-
-import com.baomidou.mybatisplus.extension.service.IService;
-import com.qmth.teachcloud.report.business.entity.TBSchoolCourse;
-
-/**
- * <p>
- * 课程基础表 服务类
- * </p>
- *
- * @author wangliang
- * @since 2021-06-01
- */
-public interface TBSchoolCourseService extends IService<TBSchoolCourse> {
-
-}

+ 0 - 16
teachcloud-report-business/src/main/java/com/qmth/teachcloud/report/business/service/TBSchoolService.java

@@ -1,16 +0,0 @@
-package com.qmth.teachcloud.report.business.service;
-
-import com.baomidou.mybatisplus.extension.service.IService;
-import com.qmth.teachcloud.report.business.entity.TBSchool;
-
-/**
- * <p>
- * 学校基础表 服务类
- * </p>
- *
- * @author wangliang
- * @since 2021-06-01
- */
-public interface TBSchoolService extends IService<TBSchool> {
-
-}

+ 0 - 20
teachcloud-report-business/src/main/java/com/qmth/teachcloud/report/business/service/impl/TBSchoolCourseServiceImpl.java

@@ -1,20 +0,0 @@
-package com.qmth.teachcloud.report.business.service.impl;
-
-import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
-import com.qmth.teachcloud.report.business.entity.TBSchoolCourse;
-import com.qmth.teachcloud.report.business.mapper.TBSchoolCourseMapper;
-import com.qmth.teachcloud.report.business.service.TBSchoolCourseService;
-import org.springframework.stereotype.Service;
-
-/**
- * <p>
- * 课程基础表 服务实现类
- * </p>
- *
- * @author wangliang
- * @since 2021-06-01
- */
-@Service
-public class TBSchoolCourseServiceImpl extends ServiceImpl<TBSchoolCourseMapper, TBSchoolCourse> implements TBSchoolCourseService {
-
-}

+ 0 - 20
teachcloud-report-business/src/main/java/com/qmth/teachcloud/report/business/service/impl/TBSchoolServiceImpl.java

@@ -1,20 +0,0 @@
-package com.qmth.teachcloud.report.business.service.impl;
-
-import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
-import com.qmth.teachcloud.report.business.entity.TBSchool;
-import com.qmth.teachcloud.report.business.mapper.TBSchoolMapper;
-import com.qmth.teachcloud.report.business.service.TBSchoolService;
-import org.springframework.stereotype.Service;
-
-/**
- * <p>
- * 学校基础表 服务实现类
- * </p>
- *
- * @author wangliang
- * @since 2021-06-01
- */
-@Service
-public class TBSchoolServiceImpl extends ServiceImpl<TBSchoolMapper, TBSchool> implements TBSchoolService {
-
-}

+ 0 - 5
teachcloud-report-business/src/main/resources/mapper/TBSchoolCourseMapper.xml

@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
-<mapper namespace="com.qmth.teachcloud.report.business.mapper.TBSchoolCourseMapper">
-
-</mapper>

+ 0 - 5
teachcloud-report-business/src/main/resources/mapper/TBSchoolMapper.xml

@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
-<mapper namespace="com.qmth.teachcloud.report.business.mapper.TBSchoolMapper">
-
-</mapper>

+ 0 - 20
teachcloud-report/src/main/java/com/qmth/teachcloud/report/api/TBSchoolController.java

@@ -1,20 +0,0 @@
-package com.qmth.teachcloud.report.api;
-
-
-import org.springframework.web.bind.annotation.RequestMapping;
-
-import org.springframework.web.bind.annotation.RestController;
-
-/**
- * <p>
- * 学校基础表 前端控制器
- * </p>
- *
- * @author wangliang
- * @since 2021-06-01
- */
-@RestController
-@RequestMapping("/t-bschool")
-public class TBSchoolController {
-
-}