commit
0a81b03e17
@ -0,0 +1,8 @@
|
|||||||
|
# 默认忽略的文件
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# 基于编辑器的 HTTP 客户端请求
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/政采.iml" filepath="$PROJECT_DIR$/.idea/政采.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="JAVA_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||||
|
<exclude-output />
|
||||||
|
<content url="file://$MODULE_DIR$" />
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
@ -0,0 +1,10 @@
|
|||||||
|
# Getting Started
|
||||||
|
|
||||||
|
### Reference Documentation
|
||||||
|
For further reference, please consider the following sections:
|
||||||
|
|
||||||
|
* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html)
|
||||||
|
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/2.2.11.RELEASE/maven-plugin/)
|
||||||
|
* [Spring Configuration Processor](https://docs.spring.io/spring-boot/docs/2.3.5.RELEASE/reference/htmlsingle/#configuration-metadata-annotation-processor)
|
||||||
|
* [Spring Boot DevTools](https://docs.spring.io/spring-boot/docs/2.3.5.RELEASE/reference/htmlsingle/#using-boot-devtools)
|
||||||
|
|
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_11">
|
||||||
|
<output url="file://$MODULE_DIR$/target/classes" />
|
||||||
|
<output-test url="file://$MODULE_DIR$/target/test-classes" />
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/target" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
@ -0,0 +1,44 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<parent>
|
||||||
|
<groupId>com.hc</groupId>
|
||||||
|
<artifactId>jxjy-education</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<artifactId>jxjy-business</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
<name>jxjy-business</name>
|
||||||
|
<description>Demo project for Spring Boot</description>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<java.version>11</java.version>
|
||||||
|
<pagehelper.version>1.2.5</pagehelper.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.hc</groupId>
|
||||||
|
<artifactId>jxjy-core</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.github.pagehelper</groupId>
|
||||||
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
||||||
|
<version>${pagehelper.version}</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||||||
|
<groupId>org.mybatis.spring.boot</groupId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
|
||||||
|
</project>
|
@ -0,0 +1,35 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author 10696
|
||||||
|
* @since 2020/11/25 10:41
|
||||||
|
*/
|
||||||
|
@Getter
|
||||||
|
public class ClassCourseDto {
|
||||||
|
|
||||||
|
private Integer classCourseId;
|
||||||
|
|
||||||
|
private Integer classId;
|
||||||
|
|
||||||
|
private Integer courseId;
|
||||||
|
|
||||||
|
private Integer courseType;
|
||||||
|
|
||||||
|
private String courseName;
|
||||||
|
|
||||||
|
private String courseLogo;
|
||||||
|
|
||||||
|
private String courseDesc;
|
||||||
|
|
||||||
|
private Float courseHours;
|
||||||
|
|
||||||
|
private String courseTeacher;
|
||||||
|
|
||||||
|
private Integer isValid;
|
||||||
|
|
||||||
|
private String gallery;
|
||||||
|
|
||||||
|
private Integer reserved1;
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
|
||||||
|
import com.hc.business.model.ClassConfig;
|
||||||
|
import com.hc.business.model.User;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "打印证书模型")
|
||||||
|
public class ClassPrintDto implements Serializable {
|
||||||
|
|
||||||
|
private Integer courseCount;
|
||||||
|
private Integer userId;
|
||||||
|
private Integer classId;
|
||||||
|
private Integer score;
|
||||||
|
private Long createTime;
|
||||||
|
//人员
|
||||||
|
private User userModel;
|
||||||
|
//所属班级
|
||||||
|
private ClassConfig classConfigModel;
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import com.hc.business.model.CourseChapterVideo;
|
||||||
|
import com.hc.business.model.UserVideoPosition;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author 10696
|
||||||
|
* @since 2020/11/25 10:41
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class CourseVideoDto {
|
||||||
|
|
||||||
|
private CourseChapterVideo video;
|
||||||
|
private UserVideoPosition position;
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import com.hc.business.model.ClassConfig;
|
||||||
|
import com.hc.business.model.Live;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class LiveClassDto implements Serializable {
|
||||||
|
|
||||||
|
|
||||||
|
private Integer liveClassId;
|
||||||
|
|
||||||
|
private Integer liveId;
|
||||||
|
|
||||||
|
private Integer classId;
|
||||||
|
|
||||||
|
//所属直播间
|
||||||
|
private Live liveModel;
|
||||||
|
|
||||||
|
//所属班级
|
||||||
|
private ClassConfig classConfigModel;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
|
||||||
|
import com.hc.business.model.ClassConfig;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "直播主表")
|
||||||
|
public class LiveDto implements Serializable {
|
||||||
|
|
||||||
|
private Integer liveId;
|
||||||
|
private String liveName;
|
||||||
|
private String liveUrl;
|
||||||
|
private String liveType;
|
||||||
|
private String liveLogo;
|
||||||
|
private Integer classId;
|
||||||
|
//所属班级
|
||||||
|
private ClassConfig classConfigModel;
|
||||||
|
}
|
@ -0,0 +1,62 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author 10696
|
||||||
|
*/
|
||||||
|
@Getter
|
||||||
|
@ToString
|
||||||
|
public class OrderInvoicesDto {
|
||||||
|
|
||||||
|
private Integer ordersId;
|
||||||
|
|
||||||
|
private String orderNo;
|
||||||
|
|
||||||
|
private Integer userId;
|
||||||
|
|
||||||
|
private Integer classId;
|
||||||
|
|
||||||
|
private Integer orderStatus;
|
||||||
|
|
||||||
|
private String body;
|
||||||
|
|
||||||
|
private String subject;
|
||||||
|
|
||||||
|
private Double totalAmount;
|
||||||
|
|
||||||
|
private Long createTime;
|
||||||
|
|
||||||
|
private Long overTime;
|
||||||
|
|
||||||
|
private String remark;
|
||||||
|
|
||||||
|
private Integer isDe;
|
||||||
|
|
||||||
|
private Integer userInvoicesId;
|
||||||
|
|
||||||
|
private String invoicesHead;
|
||||||
|
|
||||||
|
private Integer invoicesType;
|
||||||
|
|
||||||
|
private String invoicesCode;
|
||||||
|
|
||||||
|
private String invoicesBank;
|
||||||
|
|
||||||
|
private String invoicesUser;
|
||||||
|
|
||||||
|
private String invoicesNo;
|
||||||
|
|
||||||
|
private Double invoicesPrice;
|
||||||
|
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
|
private Long time;
|
||||||
|
|
||||||
|
private String remarks;
|
||||||
|
|
||||||
|
private String remarksSign;
|
||||||
|
|
||||||
|
private String taxCode;
|
||||||
|
}
|
@ -0,0 +1,93 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class OrderRefundAllDto {
|
||||||
|
|
||||||
|
@ExcelProperty(value = "支付订单编号", index = 0)
|
||||||
|
private String orderNo;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "支付订单金额", index =1)
|
||||||
|
private Double orderAmount;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "支付时间", index =2)
|
||||||
|
private String payTimeStr;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "支付方式", index =3)
|
||||||
|
private String payTypeName;
|
||||||
|
|
||||||
|
/////////////////
|
||||||
|
@ExcelProperty(value = "退费订单编号", index =4)
|
||||||
|
private String refundNo;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "退款金额", index =5)
|
||||||
|
private Double refundAmount;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "申请退费时间", index =6)
|
||||||
|
private String refundTimeStr;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "退费原因", index =7)
|
||||||
|
private String refundReason;
|
||||||
|
|
||||||
|
////////////////
|
||||||
|
@ExcelProperty(value = "姓名", index = 8)
|
||||||
|
private String userName;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "工作单位", index = 9)
|
||||||
|
private String userCompany;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "电话", index =10)
|
||||||
|
private String userMobile;
|
||||||
|
|
||||||
|
////////////////////
|
||||||
|
@ExcelProperty(value = "发票状态", index =11)
|
||||||
|
private String syncStatusStr;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "正数发票号", index =12)
|
||||||
|
private String taxNo;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "红字发票号", index =13)
|
||||||
|
private String taxNoRed;
|
||||||
|
|
||||||
|
|
||||||
|
@ExcelProperty(value = "培训班次", index =14)
|
||||||
|
private String className;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "审核状态", index =15)
|
||||||
|
private String statusName;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "审核时间", index =16)
|
||||||
|
private String fincalTimeStr;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ExcelProperty(value = "退费备注", index =17)
|
||||||
|
private String remarks;
|
||||||
|
|
||||||
|
/////////////////////////
|
||||||
|
//@ExcelProperty(value = "退款账户", index =17)
|
||||||
|
private String invoicesNo;
|
||||||
|
|
||||||
|
//@ExcelProperty(value = "开户行", index =18)
|
||||||
|
private String invoicesBank;
|
||||||
|
|
||||||
|
private Integer payType;
|
||||||
|
private Long payTime;
|
||||||
|
private Long refundTime;
|
||||||
|
private Long fincalTime;
|
||||||
|
private Integer syncStatus;
|
||||||
|
private Integer status; //审核状态
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,46 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class OrderRefundDto implements Serializable {
|
||||||
|
|
||||||
|
private Integer refundId;
|
||||||
|
|
||||||
|
private Integer orderId;
|
||||||
|
|
||||||
|
private Double totoalAmount;
|
||||||
|
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
|
private Long createTime;
|
||||||
|
|
||||||
|
|
||||||
|
private Long yewuTime;
|
||||||
|
|
||||||
|
private Long fincalTime;
|
||||||
|
|
||||||
|
|
||||||
|
private String yewuNote;
|
||||||
|
|
||||||
|
private String fincalNote;
|
||||||
|
|
||||||
|
private Integer classId;
|
||||||
|
|
||||||
|
private String reason;
|
||||||
|
|
||||||
|
private String remarks;
|
||||||
|
private String refundNo;
|
||||||
|
|
||||||
|
private List<OrderRefundLogDto> refundLogList;
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "退费查询带支付方式")
|
||||||
|
public class OrderRefundEntityDto implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 404350063874166042L;
|
||||||
|
|
||||||
|
|
||||||
|
private Integer refundId;
|
||||||
|
|
||||||
|
private Integer orderId;
|
||||||
|
private Double totoalAmount;
|
||||||
|
|
||||||
|
private Integer status;
|
||||||
|
private Long createTime;
|
||||||
|
|
||||||
|
private Long yewuTime;
|
||||||
|
private Long fincalTime;
|
||||||
|
private String yewuNote;
|
||||||
|
private String fincalNote;
|
||||||
|
private String reason;
|
||||||
|
private String remarks;
|
||||||
|
private String refundNo;
|
||||||
|
private Integer classId;
|
||||||
|
private String className;
|
||||||
|
|
||||||
|
private Integer payType;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class OrderRefundLogDto implements Serializable {
|
||||||
|
|
||||||
|
private Integer logId;
|
||||||
|
private Integer refundId;
|
||||||
|
private Integer userId;
|
||||||
|
private String userNick;
|
||||||
|
private String userName;
|
||||||
|
private String userMobile;
|
||||||
|
private String userEmail;
|
||||||
|
private String userGender;
|
||||||
|
private String userCompany;
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class OrderUserLogDto implements Serializable {
|
||||||
|
|
||||||
|
private Integer orderLogId;
|
||||||
|
private Integer orderId;
|
||||||
|
private Integer reUserId;
|
||||||
|
private String userNick;
|
||||||
|
private String userName;
|
||||||
|
private String userMobile;
|
||||||
|
private String userEmail;
|
||||||
|
private String userGender;
|
||||||
|
private String userCompany;
|
||||||
|
}
|
@ -0,0 +1,48 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class OrdersAllUserDto {
|
||||||
|
|
||||||
|
@ExcelProperty(value = "姓名", index = 0)
|
||||||
|
private String userName;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "电话", index = 1)
|
||||||
|
private String userMobile;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "性别", index = 2)
|
||||||
|
private String userGender;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "邮箱", index = 3)
|
||||||
|
private String userEmail;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "工作单位", index = 4)
|
||||||
|
private String userCompany;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "班次", index = 5)
|
||||||
|
private String className;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "支付订单号", index = 6)
|
||||||
|
private String orderNo;
|
||||||
|
|
||||||
|
|
||||||
|
@ExcelProperty(value = "支付状态", index = 7)
|
||||||
|
private String orderStatusName;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "单价", index = 8)
|
||||||
|
private Double price;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "支付方式", index = 9)
|
||||||
|
private String typeName;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "支付时间", index =10)
|
||||||
|
private String payTimeStr;
|
||||||
|
|
||||||
|
private Long payTime;
|
||||||
|
|
||||||
|
private Integer type;
|
||||||
|
|
||||||
|
private Integer orderStatus;
|
||||||
|
}
|
@ -0,0 +1,96 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.ToString;
|
||||||
|
import tk.mybatis.mapper.annotation.Order;
|
||||||
|
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import javax.validation.constraints.NotBlank;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author 10696
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class OrdersDto {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主键id
|
||||||
|
*/
|
||||||
|
private Integer ordersId;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "班次", index = 0)
|
||||||
|
private String className;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "支付订单号", index = 1)
|
||||||
|
private String orderNo;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "支付方式", index = 2)
|
||||||
|
private String typeName;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "付款单位(线下汇款)", index = 3)
|
||||||
|
private String payCompany;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "支付时间", index = 4)
|
||||||
|
private String createTimeStr;
|
||||||
|
@ExcelProperty(value = "支付状态", index = 5)
|
||||||
|
private String orderStatusName;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "订单金额", index = 6)
|
||||||
|
private Double totalAmount;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "备注", index = 7)
|
||||||
|
private String remark;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "提交人姓名", index = 8)
|
||||||
|
private String userName;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "提交人电话", index = 9)
|
||||||
|
private String userMobile;
|
||||||
|
/**
|
||||||
|
* 用户id
|
||||||
|
*/
|
||||||
|
@NotNull
|
||||||
|
private Integer userId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 班级id
|
||||||
|
*/
|
||||||
|
private Integer classId;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单状态
|
||||||
|
*/
|
||||||
|
private Integer orderStatus;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单总金额
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
private Long createTime;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 支付类型
|
||||||
|
*/
|
||||||
|
private Integer type;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单价
|
||||||
|
*/
|
||||||
|
private Double price;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class PaperAnswer implements Serializable{
|
||||||
|
|
||||||
|
private Integer questionId;
|
||||||
|
|
||||||
|
private List<Integer> answerId;
|
||||||
|
|
||||||
|
public Integer getQuestionId() {
|
||||||
|
return questionId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setQuestionId(Integer questionId) {
|
||||||
|
this.questionId = questionId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<Integer> getAnswerId() {
|
||||||
|
return answerId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAnswerId(List<Integer> answerId) {
|
||||||
|
this.answerId = answerId;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class PaperCommitDTO implements Serializable {
|
||||||
|
|
||||||
|
@NotNull(message = "用户id不可以为空")
|
||||||
|
private Integer userId;
|
||||||
|
|
||||||
|
@NotNull(message = "试卷id不可以为空")
|
||||||
|
private Integer paperId;
|
||||||
|
|
||||||
|
@NotNull(message = "班次id不可以为空")
|
||||||
|
private Integer classId;
|
||||||
|
|
||||||
|
@NotNull(message = "考试时间不可以为空")
|
||||||
|
private String testTime;
|
||||||
|
|
||||||
|
private List<PaperAnswer> answerList;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import com.hc.business.model.Paper;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author 10696
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class PaperResultDto {
|
||||||
|
|
||||||
|
private Paper paper;
|
||||||
|
|
||||||
|
private List<QuestionTypeDto> questionTypeDtoList;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author 10696
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class QuestionTypeDto {
|
||||||
|
|
||||||
|
private String typeName;
|
||||||
|
|
||||||
|
private List<Integer> questionList;
|
||||||
|
}
|
@ -0,0 +1,34 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author JIA
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class RetrievePasswordDto {
|
||||||
|
|
||||||
|
@NotNull(message = "手机号不可以为空")
|
||||||
|
private String userMobile;
|
||||||
|
|
||||||
|
@NotNull(message = "短信回执不可以为空")
|
||||||
|
private String sessionId;
|
||||||
|
|
||||||
|
@NotNull(message = "验证码不可以为空")
|
||||||
|
private String code;
|
||||||
|
|
||||||
|
@NotNull(message = "新密码不可以为空")
|
||||||
|
private String password;
|
||||||
|
|
||||||
|
private String userName;
|
||||||
|
|
||||||
|
private String userGender;
|
||||||
|
|
||||||
|
private String userCompany;
|
||||||
|
|
||||||
|
private String userEmail;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author JIA
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class SmsLoginDto {
|
||||||
|
|
||||||
|
@NotNull(message = "手机号不可以为空")
|
||||||
|
private String userMobile;
|
||||||
|
|
||||||
|
@NotNull(message = "短信回执不可以为空")
|
||||||
|
private String sessionId;
|
||||||
|
|
||||||
|
@NotNull(message = "验证码不可以为空")
|
||||||
|
private String code;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author 10696
|
||||||
|
* @since 2021/1/22 11:44
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class StaTimeTable {
|
||||||
|
|
||||||
|
private String clickDate;
|
||||||
|
|
||||||
|
private Integer countCreate;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import com.hc.business.model.Course;
|
||||||
|
import com.hc.business.model.CourseChapterVideo;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author 10696
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class ThirdCourseDto implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -570784181035882992L;
|
||||||
|
|
||||||
|
private Course course;
|
||||||
|
|
||||||
|
private List<CourseChapterVideo> courseChapterVideoList;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,33 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import com.hc.business.model.CourseChapterVideo;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户课程表(TypeCourse)实体类
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:05:18
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class TypeCourseDto {
|
||||||
|
|
||||||
|
private Integer courseTypeReId;
|
||||||
|
|
||||||
|
|
||||||
|
private Integer courseId;
|
||||||
|
|
||||||
|
|
||||||
|
private String courseName;
|
||||||
|
|
||||||
|
private String courseLogo;
|
||||||
|
|
||||||
|
|
||||||
|
private Integer courseHours;
|
||||||
|
private String courseTeacher;
|
||||||
|
private Integer time;
|
||||||
|
private List<CourseChapterVideo> videoList;
|
||||||
|
}
|
@ -0,0 +1,44 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import com.hc.business.model.UserAdvise;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户建议表
|
||||||
|
* (UserAdvise)实体类
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-16 14:20:01
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class UserAdviseDto implements Serializable {
|
||||||
|
private Integer adviceId;
|
||||||
|
|
||||||
|
private Integer userId;
|
||||||
|
|
||||||
|
private String email;
|
||||||
|
|
||||||
|
private String title;
|
||||||
|
|
||||||
|
private String advise;
|
||||||
|
|
||||||
|
private Long createTime;
|
||||||
|
|
||||||
|
private String adviceLogo;
|
||||||
|
|
||||||
|
private Integer adviceType;
|
||||||
|
|
||||||
|
private Integer isReply;
|
||||||
|
|
||||||
|
private Integer userDel;
|
||||||
|
|
||||||
|
private Integer replyAdviceId;
|
||||||
|
|
||||||
|
List<UserAdvise> replyList;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,53 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户课程表(UserCourse)实体类
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:05:18
|
||||||
|
*/
|
||||||
|
@Getter
|
||||||
|
public class UserCourseDto {
|
||||||
|
|
||||||
|
private Integer userCourseId;
|
||||||
|
|
||||||
|
private Integer userId;
|
||||||
|
|
||||||
|
private Integer courseId;
|
||||||
|
|
||||||
|
private Double coursePercent;
|
||||||
|
|
||||||
|
private String years;
|
||||||
|
|
||||||
|
private Integer classId;
|
||||||
|
|
||||||
|
private String courseName;
|
||||||
|
|
||||||
|
private String courseLogo;
|
||||||
|
|
||||||
|
private Integer courseType;
|
||||||
|
|
||||||
|
private Integer courseHours;
|
||||||
|
private String courseTeacher;
|
||||||
|
|
||||||
|
// private String courseDesc;
|
||||||
|
|
||||||
|
// private Float courseHours;
|
||||||
|
|
||||||
|
//private String courseTeacher;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,59 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Builder;
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import javax.validation.constraints.Email;
|
||||||
|
import javax.validation.constraints.NotBlank;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户表(User)实体类
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:04:13
|
||||||
|
*/
|
||||||
|
@Getter
|
||||||
|
public class UserListDto implements Serializable {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private Integer userId;
|
||||||
|
|
||||||
|
|
||||||
|
private Integer userType;
|
||||||
|
|
||||||
|
|
||||||
|
private String userName;
|
||||||
|
|
||||||
|
private String userMobile;
|
||||||
|
|
||||||
|
private String userEmail;
|
||||||
|
|
||||||
|
private String userGender;
|
||||||
|
|
||||||
|
|
||||||
|
private String userCompany;
|
||||||
|
|
||||||
|
///订单编号
|
||||||
|
private long orderNumber;
|
||||||
|
//支付状态
|
||||||
|
private int orderStatus;
|
||||||
|
//支付时间
|
||||||
|
private long orderTime;
|
||||||
|
|
||||||
|
//标题
|
||||||
|
private String className;
|
||||||
|
|
||||||
|
//备注
|
||||||
|
private String userReserved;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author 10696
|
||||||
|
* @since 2021/1/26 10:51
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class UserPriceTotal {
|
||||||
|
|
||||||
|
private BigDecimal totalUserCount;
|
||||||
|
|
||||||
|
private BigDecimal todayUserCount;
|
||||||
|
|
||||||
|
private BigDecimal monthUserCount;
|
||||||
|
|
||||||
|
private BigDecimal yearUserCount;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户表(User)实体类
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:04:13
|
||||||
|
*/
|
||||||
|
@Getter
|
||||||
|
public class UserProgressDto implements Serializable {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private Integer userId;
|
||||||
|
|
||||||
|
|
||||||
|
private Integer userType;
|
||||||
|
|
||||||
|
|
||||||
|
private String userName;
|
||||||
|
|
||||||
|
private String userMobile;
|
||||||
|
|
||||||
|
private String userEmail;
|
||||||
|
|
||||||
|
private String userGender;
|
||||||
|
|
||||||
|
|
||||||
|
private String userCompany;
|
||||||
|
|
||||||
|
|
||||||
|
//备注
|
||||||
|
private String coursePercent;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户表(User)实体类
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:04:13
|
||||||
|
*/
|
||||||
|
@Getter
|
||||||
|
public class UserScoreDto implements Serializable {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private Integer userId;
|
||||||
|
|
||||||
|
|
||||||
|
private Integer userType;
|
||||||
|
|
||||||
|
|
||||||
|
private String userName;
|
||||||
|
|
||||||
|
private String userMobile;
|
||||||
|
|
||||||
|
private String cardId;
|
||||||
|
|
||||||
|
private String userGender;
|
||||||
|
|
||||||
|
|
||||||
|
private String userCompany;
|
||||||
|
|
||||||
|
|
||||||
|
//备注
|
||||||
|
private String userScore;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,45 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author 10696
|
||||||
|
* @since 2020/12/6 11:50
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
public class UserStatusClassDto {
|
||||||
|
|
||||||
|
private Integer statusId;
|
||||||
|
|
||||||
|
private String className;
|
||||||
|
|
||||||
|
private Float totalHours;
|
||||||
|
|
||||||
|
private Long applyStartTime;
|
||||||
|
|
||||||
|
private Long applyEndTime;
|
||||||
|
|
||||||
|
private Long studyStartTime;
|
||||||
|
|
||||||
|
private Long studyEndTime;
|
||||||
|
|
||||||
|
private Long paperStartTime;
|
||||||
|
|
||||||
|
private Long paperEndTime;
|
||||||
|
|
||||||
|
private Long certStartTime;
|
||||||
|
|
||||||
|
private Long certEndTime;
|
||||||
|
|
||||||
|
private Integer classConfigId;
|
||||||
|
|
||||||
|
private Integer needPaper;
|
||||||
|
|
||||||
|
private Integer paperId;
|
||||||
|
|
||||||
|
private Integer userId;
|
||||||
|
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
package com.hc.business.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author 10696
|
||||||
|
* @since 2021/1/22 13:30
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class UserTimeTotal {
|
||||||
|
|
||||||
|
private Integer totalUserCount;
|
||||||
|
|
||||||
|
private Integer todayUserCount;
|
||||||
|
|
||||||
|
private Integer monthUserCount;
|
||||||
|
|
||||||
|
private Integer yearUserCount;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.AreaDistrict;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 省份表(AreaDistrict)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-20 12:48:45
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface AreaDistrictMapper extends Mapper<AreaDistrict> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据parentId获取地区
|
||||||
|
*
|
||||||
|
* @param parentId 父级id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<AreaDistrict> queryAllByParentId(Integer parentId);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.Banner;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 广告表
|
||||||
|
* (Banner)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-26 09:29:48
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface BannerMapper extends Mapper<Banner> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,77 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.dto.ClassPrintDto;
|
||||||
|
import com.hc.business.model.ClassConfig;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 班次表(ClassConfig)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-19 16:12:30
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface ClassConfigMapper extends Mapper<ClassConfig> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 条件查询培训班
|
||||||
|
*
|
||||||
|
* @param valid 是否上线
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<ClassConfig> queryByValid(Integer valid);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地区id查询培训班
|
||||||
|
*
|
||||||
|
* @param areaId 地区id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<ClassConfig> queryByAreaId(Integer areaId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 培训班名称查询培训班
|
||||||
|
*
|
||||||
|
* @param name 培训班名称
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<ClassConfig> queryByClassName(String name);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据开始时间查询班次
|
||||||
|
*
|
||||||
|
* @param studyStartTime
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
List<ClassConfig> queryByTime(Long studyStartTime);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取全部的培训班
|
||||||
|
*
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<ClassConfig> queryAll();
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据开年度查询班次
|
||||||
|
*
|
||||||
|
* @param year
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
List<ClassConfig> queryByYear(String year);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据目标人群查询班次
|
||||||
|
*
|
||||||
|
* @param target
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
List<ClassConfig> queryByTarget(String target);
|
||||||
|
|
||||||
|
List<ClassPrintDto> getPrintList(String cardId);
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.ClassConfigSponsor;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* (ClassConfigSponsor)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2021-05-28 14:11:29
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface ClassConfigSponsorMapper extends Mapper<ClassConfigSponsor> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取班次主办方信息
|
||||||
|
*
|
||||||
|
* @param classId 班次id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<ClassConfigSponsor> queryListByClassId(Integer classId);
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.dto.ClassCourseDto;
|
||||||
|
import com.hc.business.model.ClassCourse;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 班次课程表(ClassCourse)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-24 11:30:06
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface ClassCourseMapper extends Mapper<ClassCourse> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询班级课程
|
||||||
|
*
|
||||||
|
* @param classId 班级id
|
||||||
|
* @param courseType 类别
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<ClassCourseDto> queryByClassId(@Param("classId") Integer classId,
|
||||||
|
@Param("courseType") Integer courseType);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询重复课程
|
||||||
|
*
|
||||||
|
* @param classId 班级id
|
||||||
|
* @param courseId 课程id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<ClassCourse> queryByClassIdWithCourseId(@Param("classId") Integer classId,
|
||||||
|
@Param("courseId") Integer courseId);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.CourseAttachment;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 线下汇款订单附件表(OrderAttachment)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-01-25 20:44:19
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface CourseAttachmentMapper extends Mapper<CourseAttachment> {
|
||||||
|
List<CourseAttachment> queryByCourseId(Integer courseId);
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.CourseChapterAnnex;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 章节附件表(CourseChapterAnnex)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:04:49
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface CourseChapterAnnexMapper extends Mapper<CourseChapterAnnex> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,28 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.CourseChapter;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 课程章节表(CourseChapter)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:04:47
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface CourseChapterMapper extends Mapper<CourseChapter> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 改版 william
|
||||||
|
*
|
||||||
|
* @param map
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
List<CourseChapter> getCourseChapterChildList(Map<String, Object> map);
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.CourseChapterTest;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 章节测试表/随堂练习表(CourseChapterTest)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:04:53
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface CourseChapterTestMapper extends Mapper<CourseChapterTest> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,35 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.CourseChapterVideo;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 课程视频(CourseChapterVideo)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:04:55
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface CourseChapterVideoMapper extends Mapper<CourseChapterVideo> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取章节下的所有视频
|
||||||
|
*
|
||||||
|
* @param chapterId 章节id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<CourseChapterVideo> selectVideoByChapterId(Integer chapterId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取图书下的所有视频
|
||||||
|
*
|
||||||
|
* @param courseId 课程id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<CourseChapterVideo> selectVideoByCourseId(Integer courseId);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,51 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.dto.TypeCourseDto;
|
||||||
|
import com.hc.business.model.Course;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 课程表(Course)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:04:45
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface CourseMapper extends Mapper<Course> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询所有的课程分类id
|
||||||
|
*
|
||||||
|
* @param typeId 分类id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<TypeCourseDto> queryByTypeId(Integer typeId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据老师名称获取课程
|
||||||
|
*
|
||||||
|
* @param name 老师名称
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<Course> queryTeacherName(String name);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据课程名称获取课程
|
||||||
|
*
|
||||||
|
* @param name 课程名称
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<Course> queryCourseName(String name);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取全部课程
|
||||||
|
*
|
||||||
|
* @param valid 是否上下架
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<Course> queryAll(Integer valid);
|
||||||
|
}
|
@ -0,0 +1,29 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.CourseType;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
import tk.mybatis.mapper.common.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* (CourseType)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-12-17 14:12:51
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface CourseTypeMapper extends Mapper<CourseType> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询课程分类
|
||||||
|
*
|
||||||
|
* @param courseName 课程分类名称
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<CourseType> queryAllByCourseName(String courseName);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.CourseTypeRelation;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* (CourseTypeRelation)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2021-02-02 09:25:08
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface CourseTypeRelationMapper extends Mapper<CourseTypeRelation> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.FloatWindow;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 飘窗表(FloatWindow)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2023-04-13 08:38:33
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface FloatWindowMapper extends Mapper<FloatWindow> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.LiveClass;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 直播间班级配置表(LiveClass)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-01-20 10:58:03
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface LiveClassMapper extends Mapper<LiveClass> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ymnets
|
||||||
|
* @Description 根据liveId查询下面的所有关联直播
|
||||||
|
* @return java.util.List<com.hc.business.model.LiveClass>
|
||||||
|
**/
|
||||||
|
List<LiveClass> queryByLiveId(Integer liveId);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.dto.LiveDto;
|
||||||
|
import com.hc.business.model.Live;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 直播间表(Live)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-01-20 10:58:03
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface LiveMapper extends Mapper<Live> {
|
||||||
|
|
||||||
|
List<LiveDto> queryListByUserIDAndLiveID(Integer userId, Integer liveId);
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.MsgsAttachment;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* (MsgsAttachment)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-02-29 18:07:31
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface MsgsAttachmentMapper extends Mapper<MsgsAttachment> {
|
||||||
|
|
||||||
|
List<MsgsAttachment> queryByMsgId(Integer msgId);
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.Msgs;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* (Msgs)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-02-29 18:07:31
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface MsgsMapper extends Mapper<Msgs> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.NewsAttachment;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新闻附件表(NewsAttachment)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-01-20 10:58:03
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface NewsAttachmentMapper extends Mapper<NewsAttachment> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ymnets
|
||||||
|
* @Description 根据资讯ID查询附件
|
||||||
|
* @return java.util.List<com.hc.business.model.NewsAttachment>
|
||||||
|
**/
|
||||||
|
List<NewsAttachment> queryByNewsId(Integer newsId);
|
||||||
|
}
|
@ -0,0 +1,29 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.News;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新闻表
|
||||||
|
* (News)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-20 11:48:36
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface NewsMapper extends Mapper<News> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据标签id查询news
|
||||||
|
*
|
||||||
|
* @param tagId 标签id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<News> queryByTagId(Integer tagId);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.NewsTag;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新闻标签表(NewsTag)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-20 12:52:32
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface NewsTagMapper extends Mapper<NewsTag> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询多条数据
|
||||||
|
*
|
||||||
|
* @return 对象列表
|
||||||
|
*/
|
||||||
|
List<NewsTag> queryAll();
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.OrderAttachment;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 线下汇款订单附件表(OrderAttachment)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-01-25 20:44:19
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface OrderAttachmentMapper extends Mapper<OrderAttachment> {
|
||||||
|
List<OrderAttachment> queryByOrderId(Integer orderId);
|
||||||
|
}
|
@ -0,0 +1,50 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.dto.OrderUserLogDto;
|
||||||
|
import com.hc.business.dto.OrdersAllUserDto;
|
||||||
|
import com.hc.business.model.OrderUserLog;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* (OrderUserLog)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-12-03 09:25:08
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface OrderUserLogMapper extends Mapper<OrderUserLog> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据订单id查询用户
|
||||||
|
*
|
||||||
|
* @param ordersId 订单id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<OrderUserLog> queryByOrderId(Integer ordersId);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据订单id查询用户
|
||||||
|
*
|
||||||
|
* @param ordersId 订单id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<OrderUserLogDto> queryUserLogByOrderId(Integer ordersId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据用户id和订单id查询
|
||||||
|
*
|
||||||
|
* @param ordersId 订单id
|
||||||
|
* @param userId 用户id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<OrderUserLog> queryByUserIdAndOrderId(@Param("ordersId") Integer ordersId,
|
||||||
|
@Param("userId") Integer userId);
|
||||||
|
|
||||||
|
List<OrdersAllUserDto> queryAllOrdersUser(Integer orderId, String orderNo, Integer status, Integer payType, Integer classId, Long begin, Long end);
|
||||||
|
}
|
@ -0,0 +1,120 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.dto.OrderInvoicesDto;
|
||||||
|
import com.hc.business.dto.OrdersDto;
|
||||||
|
import com.hc.business.model.Orders;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单表(Orders)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-26 16:46:42
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface OrdersMapper extends Mapper<Orders> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据订单编号获取订单信息
|
||||||
|
*
|
||||||
|
* @param orderNo 订单编号
|
||||||
|
* @return 实例对象
|
||||||
|
*/
|
||||||
|
Orders queryByOrderNo(String orderNo);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据用户id 查询
|
||||||
|
*
|
||||||
|
* @param userId 用户id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<Orders> queryAllByUserId(Integer userId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户 查询多条数据
|
||||||
|
*
|
||||||
|
* @param classId 班次id
|
||||||
|
* @return 对象列表
|
||||||
|
*/
|
||||||
|
List<Orders> queryAllByClassId(Integer classId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户 查询多条数据
|
||||||
|
*
|
||||||
|
* @param className 班次名称
|
||||||
|
* @return 对象列表
|
||||||
|
*/
|
||||||
|
List<Orders> queryAllByClassName(String className);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户 查询多条数据
|
||||||
|
*
|
||||||
|
* @param status 订单状态
|
||||||
|
* @return 对象列表
|
||||||
|
*/
|
||||||
|
List<Orders> queryAllByStatus(Integer status);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据发票id查询
|
||||||
|
*
|
||||||
|
* @param userInvoicesId 发票id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<Orders> queryByUserInvoicesId(Integer userInvoicesId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询总金额
|
||||||
|
*
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
BigDecimal countPrice();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 当天订单金额
|
||||||
|
*
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
BigDecimal queryToday();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 当月订单金额
|
||||||
|
*
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
BigDecimal queryMonth();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 当年订单金额
|
||||||
|
*
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
BigDecimal queryYear();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取订单数量
|
||||||
|
*
|
||||||
|
* @return 实例对象
|
||||||
|
*/
|
||||||
|
Integer countOrderTotal();
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询有效的发票和订单
|
||||||
|
*
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<OrderInvoicesDto> queryAllWithInvoices();
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ymnets
|
||||||
|
* @Description 获取所有订单
|
||||||
|
* @return java.util.List<com.hc.business.dto.OrdersDto>
|
||||||
|
**/
|
||||||
|
List<OrdersDto> queryAllOrders(Integer orderId,String orderNo,Integer status,Integer payType,Integer classId,Integer checkFlag,String payCompany,Long begin,Long end);
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.Paper;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 试卷表(Paper)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-12-07 11:34:34
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface PaperMapper extends Mapper<Paper> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.PaperQuestion;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 随机试卷问题表(PaperQuestion)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-12-07 11:35:11
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface PaperQuestionMapper extends Mapper<PaperQuestion> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据试卷id获取抽题规则
|
||||||
|
*
|
||||||
|
* @param paperId 试卷id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<PaperQuestion> queryByPaperId(Integer paperId);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,34 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.QuestionAnswer;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 问题答案表(QuestionAnswer)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-12-07 11:36:19
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface QuestionAnswerMapper extends Mapper<QuestionAnswer> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取习题答案
|
||||||
|
*
|
||||||
|
* @param questionId 试题id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<QuestionAnswer> queryByQuestionId(Integer questionId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据试题id获取答案id
|
||||||
|
*
|
||||||
|
* @param questionId 试题id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<Integer> selectAnswerIdListByQuestionId(Integer questionId);
|
||||||
|
}
|
@ -0,0 +1,50 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.Question;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 习题表(Question)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-12-07 11:35:55
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface QuestionMapper extends Mapper<Question> {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据主键获取题目
|
||||||
|
*
|
||||||
|
* @param questionId 题目id
|
||||||
|
* @return 实例对象
|
||||||
|
*/
|
||||||
|
Question queryById(Integer questionId);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取全部习题
|
||||||
|
*
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<Question> queryQuestions();
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取习题id
|
||||||
|
*
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<Integer> queryByTagId(@Param("questionType") Integer questionType,
|
||||||
|
@Param("questionLevel") Integer questionLevel,
|
||||||
|
@Param("questionTagId") Integer questionTagId);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
List<Integer> queryTagId(@Param("questionTagId") Integer questionTagId);
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.QuestionTag;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 问题标签表(QuestionTag)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-12-07 11:36:39
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface QuestionTagMapper extends Mapper<QuestionTag> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.QuestionType;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 问题类型表(QuestionType)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-12-07 11:37:00
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface QuestionTypeMapper extends Mapper<QuestionType> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,29 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.Course;
|
||||||
|
import com.hc.business.model.ThirdCourse;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第三方用户课程配置表(ThirdCourse)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-06-17 17:29:30
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface ThirdCourseMapper extends Mapper<ThirdCourse> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取课程
|
||||||
|
*
|
||||||
|
* @param thirdId 第三方主键
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<Course> queryThreadCourse(Integer thirdId);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,30 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.Third;
|
||||||
|
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第三方用户表(Third)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-06-17 17:29:30
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface ThirdMapper extends Mapper<Third> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据token 获取第三方信息
|
||||||
|
*
|
||||||
|
* @param token 校验码
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<Third> queryThirdByToken(String token);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.UserAdmin;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 管理员表(UserAdmin)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-16 13:45:04
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface UserAdminMapper extends Mapper<UserAdmin> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据用户名查找管理员
|
||||||
|
*
|
||||||
|
* @param adminAccount 用户名
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserAdmin> selectUserAdmin(String adminAccount);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.UserAdviseAttachment;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 线下汇款订单附件表(OrderAttachment)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-01-25 20:44:19
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface UserAdviseAttachmentMapper extends Mapper<UserAdviseAttachment> {
|
||||||
|
List<UserAdviseAttachment> queryByUserAdviseId(Integer userAdviseId);
|
||||||
|
}
|
@ -0,0 +1,46 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.dto.UserAdviseDto;
|
||||||
|
import com.hc.business.model.UserAdvise;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户建议表
|
||||||
|
* (UserAdvise)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-16 14:20:02
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface UserAdviseMapper extends Mapper<UserAdvise> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据用户id查询建议
|
||||||
|
*
|
||||||
|
* @param userId 用户id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserAdviseDto> queryAllByUserId(Integer userId);
|
||||||
|
|
||||||
|
|
||||||
|
List<UserAdvise> queryByAdviceId(Integer adviceId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据类别id查询建议
|
||||||
|
*
|
||||||
|
* @param adviceType 类别id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserAdviseDto> queryAllByAdviceType(Integer adviceType);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询所有意见信息
|
||||||
|
*
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserAdviseDto> queryAll();
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.dto.UserCourseDto;
|
||||||
|
import com.hc.business.model.UserCourse;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户课程表(UserCourse)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:05:19
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface UserCourseMapper extends Mapper<UserCourse> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据用户id 和培训班id 获取用户课程以及进度
|
||||||
|
*
|
||||||
|
* @param userId 用户id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserCourseDto> selectUserCourseList(@Param("userId") Integer userId,
|
||||||
|
@Param("classId") Integer classId);
|
||||||
|
Integer selectUserCourseCount(@Param("phone") String phone,
|
||||||
|
@Param("classId") Integer classId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据用户id 和培训班id 获取用户课程
|
||||||
|
*
|
||||||
|
* @param userId 用户id
|
||||||
|
* @param classId 班级id
|
||||||
|
* @return 实力对象数组
|
||||||
|
*/
|
||||||
|
List<UserCourse> selectUserCourseListByParam(@Param("userId") Integer userId,
|
||||||
|
@Param("classId") Integer classId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据用户id 和培训班id,课程id获取某个课程进度 获取用户课程以及进度
|
||||||
|
*
|
||||||
|
* @param userId 用户id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserCourseDto> selectUserCourseProgress(@Param("userId") Integer userId,
|
||||||
|
@Param("classId") Integer classId,
|
||||||
|
@Param("courseId") Integer courseId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户课程
|
||||||
|
*
|
||||||
|
* @param userId 用户id
|
||||||
|
* @param classId 班级id
|
||||||
|
* @param courseId 课程id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserCourse> selectUserCourse(@Param("userId") Integer userId,
|
||||||
|
@Param("classId") Integer classId,
|
||||||
|
@Param("courseId") Integer courseId);
|
||||||
|
}
|
@ -0,0 +1,106 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.dto.StaTimeTable;
|
||||||
|
import com.hc.business.dto.UserListDto;
|
||||||
|
import com.hc.business.dto.UserProgressDto;
|
||||||
|
import com.hc.business.dto.UserScoreDto;
|
||||||
|
import com.hc.business.model.User;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户表(User)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:04:14
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface UserMapper extends Mapper<User> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 手机号查询用户
|
||||||
|
*
|
||||||
|
* @param userMobile 手机号
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<User> queryUserByMobile(String userMobile);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 身份证号查询用户
|
||||||
|
*
|
||||||
|
* @param cardId 身份证号
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<User> queryOneByCardId(String cardId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 姓名查询用户
|
||||||
|
*
|
||||||
|
* @param name 身份证号
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<User> queryUserByName(String name);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 姓名查询用户
|
||||||
|
*
|
||||||
|
* @param name 身份证号
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserListDto> queryUserByClassName(@Param("name")String name);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 姓名查询用户
|
||||||
|
*
|
||||||
|
* @param name 身份证号
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserListDto> queryUserByClassNameAndPay(@Param("name")String name);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取最近七天用户统计数量
|
||||||
|
*
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<StaTimeTable> queryByUserCount();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 当天注册用户
|
||||||
|
*
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
Integer queryToday();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 当月注册用户
|
||||||
|
*
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
Integer queryMonth();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 当年注册用户
|
||||||
|
*
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
Integer queryYear();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户总数
|
||||||
|
*
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
int queryTotal();
|
||||||
|
|
||||||
|
|
||||||
|
//新增统计
|
||||||
|
List<UserListDto> queryClassUserList(Integer id);
|
||||||
|
List<UserScoreDto> queryClassScoreList(Integer id);
|
||||||
|
List<UserProgressDto> queryClassProgress(Integer id);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.UserRefundHistory;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
import tk.mybatis.mapper.common.Mapper;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户退款记录表(UserRefundHistory)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-12-10 11:31:38
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface UserRefundHistoryMapper extends Mapper<UserRefundHistory> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据订单号查询退货单
|
||||||
|
*
|
||||||
|
* @param orderNo 订单号
|
||||||
|
* @return 实例对象
|
||||||
|
*/
|
||||||
|
UserRefundHistory queryByOrderNo(String orderNo);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,70 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.dto.UserStatusClassDto;
|
||||||
|
import com.hc.business.model.User;
|
||||||
|
import com.hc.business.model.UserStatus;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户班级学习进度表
|
||||||
|
* (UserStatus)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-12-06 11:26:42
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface UserStatusMapper extends Mapper<UserStatus> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询用户培训记录
|
||||||
|
*
|
||||||
|
* @param userId 用户id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserStatusClassDto> queryDtoByUserId(Integer userId);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询用户状态
|
||||||
|
*
|
||||||
|
* @param userId 用户id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserStatus> queryByUserId(Integer userId);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询用户状态
|
||||||
|
*
|
||||||
|
* @param userId 用户id
|
||||||
|
* @param classId 班次id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserStatus> queryByClassIdAndUserId(@Param("classId") Integer classId,
|
||||||
|
@Param("userId") Integer userId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询有课程权限的用户列表
|
||||||
|
*
|
||||||
|
* @param classId 班次id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserStatus> queryAvailableByClassId(Integer classId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询用户状态
|
||||||
|
*
|
||||||
|
* @param classId 班次id
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<User> queryByClassId(Integer classId);
|
||||||
|
|
||||||
|
|
||||||
|
void updateUserStatus(Integer userId,Integer classId,Integer orderId);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.UserTeacher;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* (UserTeacher)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-20 11:08:18
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface UserTeacherMapper extends Mapper<UserTeacher> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 依据老师名称查询老师
|
||||||
|
*
|
||||||
|
* @param name 老师名称
|
||||||
|
* @return 实例对象数组
|
||||||
|
*/
|
||||||
|
List<UserTeacher> queryByName(String name);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.UserTestHistory;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户考试记录表(UserTestHistory)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-12-07 11:28:18
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface UserTestHistoryMapper extends Mapper<UserTestHistory> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取当前最高成绩
|
||||||
|
*
|
||||||
|
* @param userId 用户id
|
||||||
|
* @param classId 班次id
|
||||||
|
* @return 实例对象
|
||||||
|
*/
|
||||||
|
UserTestHistory queryMaxScore(Integer userId, Integer classId);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,30 @@
|
|||||||
|
package com.hc.business.mapper;
|
||||||
|
|
||||||
|
import com.hc.business.model.UserVideoPosition;
|
||||||
|
import com.hc.core.utils.mapper.Mapper;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户视频观看记录(UserVideoPosition)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-05-29 15:50:50
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface UserVideoPositionMapper extends Mapper<UserVideoPosition>{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询视频观看记录
|
||||||
|
*
|
||||||
|
* @param videoId
|
||||||
|
* @param userId
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
List<UserVideoPosition> selectUserPositionByUserAndVideo(@Param("videoId") Integer videoId,
|
||||||
|
@Param("userId") Integer userId);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,143 @@
|
|||||||
|
package com.hc.business.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import javax.persistence.Transient;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 省份表(AreaDistrict)实体类
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-20 12:48:44
|
||||||
|
*/
|
||||||
|
|
||||||
|
@ApiModel(value = "地区表")
|
||||||
|
public class AreaDistrict implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -60609528264342036L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地区编号
|
||||||
|
*/
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
|
@ApiModelProperty(value = "地区编号")
|
||||||
|
private Integer areaId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地区名称
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "地区名称", required = true)
|
||||||
|
@NotNull
|
||||||
|
private String areaName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 父级编号
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "父级编号", required = true)
|
||||||
|
@NotNull
|
||||||
|
private Integer parentId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 省级配图
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "省级配图", required = true)
|
||||||
|
private String areaImage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地区状态 0/锁定 1/开放
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "地区状态 0/锁定 1/开放", required = true)
|
||||||
|
private Integer areaStatus;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地区索引
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "地区索引", required = true)
|
||||||
|
@NotNull
|
||||||
|
private Integer areaIndex;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 构造的
|
||||||
|
*/
|
||||||
|
@Transient
|
||||||
|
private List<AreaDistrict> areaDistrictList;
|
||||||
|
|
||||||
|
public AreaDistrict(Integer areaId, @NotNull String areaName,
|
||||||
|
@NotNull Integer parentId, String areaImage,
|
||||||
|
Integer areaStatus, @NotNull Integer areaIndex) {
|
||||||
|
this.areaId = areaId;
|
||||||
|
this.areaName = areaName;
|
||||||
|
this.parentId = parentId;
|
||||||
|
this.areaImage = areaImage;
|
||||||
|
this.areaStatus = areaStatus;
|
||||||
|
this.areaIndex = areaIndex;
|
||||||
|
}
|
||||||
|
|
||||||
|
public AreaDistrict() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getAreaId() {
|
||||||
|
return areaId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAreaId(Integer areaId) {
|
||||||
|
this.areaId = areaId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAreaName() {
|
||||||
|
return areaName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAreaName(String areaName) {
|
||||||
|
this.areaName = areaName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getParentId() {
|
||||||
|
return parentId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setParentId(Integer parentId) {
|
||||||
|
this.parentId = parentId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAreaImage() {
|
||||||
|
return areaImage;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAreaImage(String areaImage) {
|
||||||
|
this.areaImage = areaImage;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getAreaStatus() {
|
||||||
|
return areaStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAreaStatus(Integer areaStatus) {
|
||||||
|
this.areaStatus = areaStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getAreaIndex() {
|
||||||
|
return areaIndex;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAreaIndex(Integer areaIndex) {
|
||||||
|
this.areaIndex = areaIndex;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<AreaDistrict> getAreaDistrictList() {
|
||||||
|
return areaDistrictList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAreaDistrictList(List<AreaDistrict> areaDistrictList) {
|
||||||
|
this.areaDistrictList = areaDistrictList;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,61 @@
|
|||||||
|
package com.hc.business.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author jia
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "班次图章表")
|
||||||
|
public class ClassConfigSponsor implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 961577731337873266L;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主键
|
||||||
|
*/
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
|
@ApiModelProperty(value = "主键", required = true)
|
||||||
|
private Integer sponsorId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主办方图章地址
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "主办方图章地址", required = true)
|
||||||
|
private String sponsorUrl;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主板方名称
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "主板方名称", required = true)
|
||||||
|
private String sponsorName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 班次id
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "班次id", required = true)
|
||||||
|
@NotNull
|
||||||
|
private Integer classId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 排序
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "排序", required = true)
|
||||||
|
private Integer sponsorIndex;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "创建时间", required = true)
|
||||||
|
private Long createTime;
|
||||||
|
}
|
@ -0,0 +1,55 @@
|
|||||||
|
package com.hc.business.model;
|
||||||
|
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "课程附件")
|
||||||
|
public class CourseAttachment implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 744313753880420290L;
|
||||||
|
|
||||||
|
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
|
@ApiModelProperty(value = "ID")
|
||||||
|
private Integer attachmentId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 课程id
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "课程id", required = true)
|
||||||
|
private Integer courseId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 附件名字
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "附件名字", required = true)
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 附件介绍
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "附件介绍", required = true)
|
||||||
|
private String content;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 附件地址
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "附件地址", required = true)
|
||||||
|
private String url;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 索引
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "索引", required = true)
|
||||||
|
private Integer indexNum;
|
||||||
|
}
|
@ -0,0 +1,165 @@
|
|||||||
|
package com.hc.business.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import javax.persistence.Transient;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 课程章节表(CourseChapter)实体类
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:04:47
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModel(value = "章节表")
|
||||||
|
public class CourseChapter implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 873871660383226119L;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主键id
|
||||||
|
*/
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
|
@ApiModelProperty(value = "主键id")
|
||||||
|
private Integer courseChapterId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 章节名字
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "章节名字", required = true)
|
||||||
|
@NotNull
|
||||||
|
private String chapterName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 父节点ID
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "父节点ID", required = true)
|
||||||
|
@NotNull
|
||||||
|
private Integer parentId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 章节层级
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "章节层级", required = true)
|
||||||
|
@NotNull
|
||||||
|
private Integer chapterLevel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 课程ID
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "课程ID", required = true)
|
||||||
|
@NotNull
|
||||||
|
private Integer courseId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 构造
|
||||||
|
*/
|
||||||
|
@Transient
|
||||||
|
private List<CourseChapter> childChapter;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
private CourseChapterVideo chapterVideo;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
private CourseChapterAnnex courseChapterAnnex;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
private UserVideoPosition userVideoPosition;
|
||||||
|
|
||||||
|
public CourseChapter(Integer courseChapterId, @NotNull String chapterName,
|
||||||
|
@NotNull Integer parentId,
|
||||||
|
@NotNull Integer chapterLevel,
|
||||||
|
@NotNull Integer courseId) {
|
||||||
|
this.courseChapterId = courseChapterId;
|
||||||
|
this.chapterName = chapterName;
|
||||||
|
this.parentId = parentId;
|
||||||
|
this.chapterLevel = chapterLevel;
|
||||||
|
this.courseId = courseId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public CourseChapter() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getCourseChapterId() {
|
||||||
|
return courseChapterId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCourseChapterId(Integer courseChapterId) {
|
||||||
|
this.courseChapterId = courseChapterId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getChapterName() {
|
||||||
|
return chapterName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setChapterName(String chapterName) {
|
||||||
|
this.chapterName = chapterName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getParentId() {
|
||||||
|
return parentId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setParentId(Integer parentId) {
|
||||||
|
this.parentId = parentId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getChapterLevel() {
|
||||||
|
return chapterLevel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setChapterLevel(Integer chapterLevel) {
|
||||||
|
this.chapterLevel = chapterLevel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getCourseId() {
|
||||||
|
return courseId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCourseId(Integer courseId) {
|
||||||
|
this.courseId = courseId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<CourseChapter> getChildChapter() {
|
||||||
|
return childChapter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setChildChapter(List<CourseChapter> childChapter) {
|
||||||
|
this.childChapter = childChapter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public CourseChapterVideo getChapterVideo() {
|
||||||
|
return chapterVideo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setChapterVideo(CourseChapterVideo chapterVideo) {
|
||||||
|
this.chapterVideo = chapterVideo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public CourseChapterAnnex getCourseChapterAnnex() {
|
||||||
|
return courseChapterAnnex;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCourseChapterAnnex(CourseChapterAnnex courseChapterAnnex) {
|
||||||
|
this.courseChapterAnnex = courseChapterAnnex;
|
||||||
|
}
|
||||||
|
|
||||||
|
public UserVideoPosition getUserVideoPosition() {
|
||||||
|
return userVideoPosition;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUserVideoPosition(UserVideoPosition userVideoPosition) {
|
||||||
|
this.userVideoPosition = userVideoPosition;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,115 @@
|
|||||||
|
package com.hc.business.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 章节附件表(CourseChapterAnnex)实体类
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-11-09 10:04:48
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModel(value = "章节附件表")
|
||||||
|
public class CourseChapterAnnex implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 282553089268625985L;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主键id
|
||||||
|
*/
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
|
@ApiModelProperty(value = "主键id")
|
||||||
|
private Integer courseChapterAnnexId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 附件名字
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "附件名字", required = true)
|
||||||
|
@NotNull
|
||||||
|
private String annexName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 章节ID
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "章节ID", required = true)
|
||||||
|
@NotNull
|
||||||
|
private Integer courseChapterId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 介绍
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "介绍", required = true)
|
||||||
|
@NotNull
|
||||||
|
private String annexIntroduction;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 附件地址
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "附件地址", required = true)
|
||||||
|
@NotNull
|
||||||
|
private String annexUrl;
|
||||||
|
|
||||||
|
public CourseChapterAnnex(Integer courseChapterAnnexId, @NotNull String annexName,
|
||||||
|
@NotNull Integer courseChapterId,
|
||||||
|
@NotNull String annexIntroduction, @NotNull String annexUrl) {
|
||||||
|
this.courseChapterAnnexId = courseChapterAnnexId;
|
||||||
|
this.annexName = annexName;
|
||||||
|
this.courseChapterId = courseChapterId;
|
||||||
|
this.annexIntroduction = annexIntroduction;
|
||||||
|
this.annexUrl = annexUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
public CourseChapterAnnex() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getCourseChapterAnnexId() {
|
||||||
|
return courseChapterAnnexId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCourseChapterAnnexId(Integer courseChapterAnnexId) {
|
||||||
|
this.courseChapterAnnexId = courseChapterAnnexId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAnnexName() {
|
||||||
|
return annexName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAnnexName(String annexName) {
|
||||||
|
this.annexName = annexName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getCourseChapterId() {
|
||||||
|
return courseChapterId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCourseChapterId(Integer courseChapterId) {
|
||||||
|
this.courseChapterId = courseChapterId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAnnexIntroduction() {
|
||||||
|
return annexIntroduction;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAnnexIntroduction(String annexIntroduction) {
|
||||||
|
this.annexIntroduction = annexIntroduction;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAnnexUrl() {
|
||||||
|
return annexUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAnnexUrl(String annexUrl) {
|
||||||
|
this.annexUrl = annexUrl;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,65 @@
|
|||||||
|
package com.hc.business.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* (CourseType)实体类
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2020-12-17 14:12:49
|
||||||
|
*/
|
||||||
|
|
||||||
|
@ApiModel(value = "课程分类表")
|
||||||
|
public class CourseType implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -74761225011108876L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主键
|
||||||
|
*/
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
|
@ApiModelProperty(value = "主键")
|
||||||
|
private Integer courseTypeId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 课程分类名称
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "课程分类名称", required = true)
|
||||||
|
@NotNull
|
||||||
|
private String courseName;
|
||||||
|
|
||||||
|
|
||||||
|
public CourseType(Integer courseTypeId, String courseName) {
|
||||||
|
this.courseTypeId = courseTypeId;
|
||||||
|
this.courseName = courseName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public CourseType() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getCourseTypeId() {
|
||||||
|
return courseTypeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCourseTypeId(Integer courseTypeId) {
|
||||||
|
this.courseTypeId = courseTypeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCourseName() {
|
||||||
|
return courseName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCourseName(String courseName) {
|
||||||
|
this.courseName = courseName;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,92 @@
|
|||||||
|
package com.hc.business.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* (CourseTypeRelation)实体类
|
||||||
|
*
|
||||||
|
* @author java
|
||||||
|
* @since 2021-02-02 09:25:06
|
||||||
|
*/
|
||||||
|
|
||||||
|
@ApiModel(value = "课程类别关系表")
|
||||||
|
public class CourseTypeRelation implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -48750814361274136L;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主键id
|
||||||
|
*/
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
|
@ApiModelProperty(value = "主键id")
|
||||||
|
private Integer courseTypeReId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 课程id
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "课程id", required = true)
|
||||||
|
private Integer courseId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 类别id
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "类别id", required = true)
|
||||||
|
private Integer courseTypeId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "创建时间")
|
||||||
|
private Long createTime;
|
||||||
|
|
||||||
|
public CourseTypeRelation(Integer courseTypeReId, Integer courseId, Integer courseTypeId, Long createTime) {
|
||||||
|
this.courseTypeReId = courseTypeReId;
|
||||||
|
this.courseId = courseId;
|
||||||
|
this.courseTypeId = courseTypeId;
|
||||||
|
this.createTime = createTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public CourseTypeRelation() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getCourseTypeReId() {
|
||||||
|
return courseTypeReId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCourseTypeReId(Integer courseTypeReId) {
|
||||||
|
this.courseTypeReId = courseTypeReId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getCourseId() {
|
||||||
|
return courseId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCourseId(Integer courseId) {
|
||||||
|
this.courseId = courseId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getCourseTypeId() {
|
||||||
|
return courseTypeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCourseTypeId(Integer courseTypeId) {
|
||||||
|
this.courseTypeId = courseTypeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getCreateTime() {
|
||||||
|
return createTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCreateTime(Long createTime) {
|
||||||
|
this.createTime = createTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue