master
ymnets 5 months ago
commit 0a81b03e17

8
.idea/.gitignore vendored

@ -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,48 @@
package com.hc.business.dto;
import lombok.Data;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import java.io.Serializable;
/**
* (ThirdCourse)
*
* @author java
* @since 2020-06-17 17:29:30
*/
@Data
public class ThirdCourseBack implements Serializable {
private static final long serialVersionUID = 819515458055433747L;
/**
* id
*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
/**
* ID
*/
private Integer thirdId;
/**
* ID
*/
private Integer courseId;
/**
*
*/
private Integer status;
/**
*
*/
private Long createTime = System.currentTimeMillis();
private String courseName;
private String courseLogo;
}

@ -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,67 @@
package com.hc.business.dto;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
import javax.validation.constraints.NotNull;
/**
* @author 10696
*/
@Data
public class UserInvoiceDto {
@ExcelProperty(value = "支付订单号", index = 0)
private String orderNo;// -- 订单号
@ExcelProperty(value = "支付时间", index = 1)
private String createTimeStr;
@ExcelProperty(value = "培训班次", index = 2)
private String className;
@ExcelProperty(value = "支付状态", index = 3)
private String orderStatusName;
@ExcelProperty(value = "订单金额", index = 4)
private Double totalAmount;
@ExcelProperty(value = "发票金额", index = 5)
private Double invoicesPrice;
@ExcelProperty(value = "发票抬头", index =6)
private String invoicesHead;
@ExcelProperty(value = "税号", index = 7)
private String invoicesCode;
@ExcelProperty(value = "开户行", index = 8)
private String invoicesBank;
@ExcelProperty(value = "账号", index = 9)
private String invoicesNo;
@ExcelProperty(value = "地址", index = 10)
private String invoicesAddress;
@ExcelProperty(value = "电话", index = 11)
private String invoicesTel;
@ExcelProperty(value = "收件人", index = 12)
private String buyerLinker;
@ExcelProperty(value = "收件电话", index = 13)
private String buyerPhone;
@ExcelProperty(value = "收件地址", index = 14)
private String buyerAddress;
private Long createTime;
private Integer orderStatus; //订单状态订单状态0123支付成功退费部分退费 1
private String userMobile;//电话
}

@ -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,125 @@
package com.hc.business.dto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Builder;
import lombok.Data;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.validation.constraints.Email;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.io.Serializable;
@Data
public class UserStatusDto {
private static final long serialVersionUID = 775234090220211721L;
/**
* id
*/
private Integer userId;
/**
*
*/
private String cardId;
/**
*
*/
private String userPassword;
/**
* 1234,线
*/
private Integer userType;
/**
*
*/
private Integer areaId;
/**
*
*/
private String userNick;
/**
*
*/
private String userName;
/**
*
*/
private String userMobile;
/**
*
*/
private String userEmail;
/**
*
*/
private String userGender;
/**
*
*/
private Long createTime;
/**
*
*/
private String userBirthday;
/**
*
*/
private Byte active;
/**
*
*/
private String userLogo;
/**
*
*/
private String userCompany;
/**
* 1
*/
private String userReserved1;
/**
* 2
*/
private String userReserved2;
/**
* 3
*/
private String userReserved3;
/**
* 4
*/
private String userReserved4;
/**
* 5
*/
private String userReserved5;
private Long payTime;
}

@ -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.CourseChapterTag;
import org.springframework.stereotype.Repository;
import com.hc.core.utils.mapper.Mapper;
/**
* (CourseChapterTag)访
*
* @author java
* @since 2020-11-09 10:04:51
*/
@Repository
public interface CourseChapterTagMapper extends Mapper<CourseChapterTag> {
}

@ -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> {
/**
* idnews
*
* @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,33 @@
package com.hc.business.mapper;
import com.hc.business.dto.OrderRefundLogDto;
import com.hc.business.model.OrderRefundLog;
import org.springframework.stereotype.Repository;
import com.hc.core.utils.mapper.Mapper;
import java.util.List;
/**
* 退(OrderRefundLog)访
*
* @author makejava
* @since 2024-01-20 10:58:04
*/
@Repository
public interface OrderRefundLogMapper extends Mapper<OrderRefundLog> {
/**
* @Author ymnets
* @Description 退ID退
* @return java.util.List<com.hc.business.dto.OrderRefundLogDto>
**/
List<OrderRefundLogDto> queryByRefundId(Integer refundId);
/**
* @Author ymnets
* @Description 退退退
* @return java.util.List<com.hc.business.dto.OrderRefundLogDto>
**/
List<OrderRefundLogDto> getWaitingForRefundUser(Integer orderId);
}

@ -0,0 +1,38 @@
package com.hc.business.mapper;
import com.hc.business.dto.OrderRefundAllDto;
import com.hc.business.dto.OrderRefundEntityDto;
import com.hc.business.model.OrderRefund;
import org.springframework.stereotype.Repository;
import com.hc.core.utils.mapper.Mapper;
import java.util.List;
/**
* 退(OrderRefund)访
*
* @author makejava
* @since 2024-01-20 10:58:04
*/
@Repository
public interface OrderRefundMapper extends Mapper<OrderRefund> {
/**
* @Author ymnets
* @Description 退
* @param orderNo
* @param status
* @param payType
* @param classId
* @return java.util.List<com.hc.business.dto.OrderRefundLogDto>
**/
List<OrderRefundEntityDto> queryAll(Integer orderId, String orderNo, Integer status, Integer payType, Integer classId, Long begin, Long end);
/**
* @Author ymnets
* @Description 退
* @return java.util.List<com.hc.business.dto.OrderRefundAllDto>
**/
List<OrderRefundAllDto> queryHighAll(Integer orderId, String orderNo, Integer status, Integer payType, Integer classId, Long begin, Long end);
}

@ -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);
/**
* idid
*
* @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);
/**
* idid
*
* @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,81 @@
package com.hc.business.mapper;
import com.hc.business.dto.UserInvoiceDto;
import com.hc.business.model.UserInvoices;
import com.hc.core.utils.mapper.Mapper;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* (UserInvoices)访
*
* @author java
* @since 2020-12-02 10:50:34
*/
@Repository
public interface UserInvoicesMapper extends Mapper<UserInvoices> {
/**
* @Author ymnets
* @Description
* @return com.hc.business.model.UserInvoices
**/
UserInvoices queryBySyncSerialNum(String syncSerialNum);
/**
* @Author ymnets
* @Description
* @return
**/
UserInvoices queryByFPCode(String fpCode);
/**
* @Author ymnets
* @Description
* @return
**/
UserInvoices queryBySyncOrderNo(String syncOrderNo);
/**
*
*
* @param userId id
* @return
*/
List<UserInvoices> queryDetailByUserId(Integer userId);
/**
*
*
* @return
*/
List<UserInvoices> queryAll();
/**
*
*
* @param classId id
* @return
*/
List<UserInvoices> queryByClassId(Integer classId);
/**
*
*
* @param orderId id
* @return
*/
List<UserInvoices> queryByOrderId(Integer orderId,Integer syncStatus);
/**
*
*
* @param status
* @return
*/
List<UserInvoices> queryByStatus(Integer status);
List<UserInvoiceDto> queryAllInvoices(String orderNo, Long begin, Long end);
}

@ -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,119 @@
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;
/**
* 广
* (Banner)
*
* @author java
* @since 2020-11-26 09:29:46
*/
@ApiModel(value = "banner表")
public class Banner implements Serializable {
private static final long serialVersionUID = -34877727454440687L;
/**
* ID
*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@ApiModelProperty(value = "ID主键")
private Integer bannerId;
/**
* 广
*/
@ApiModelProperty(value = "广告连接", required = true)
@NotNull
private String bannerUrl;
/**
*
*/
@ApiModelProperty(value = "索引", required = true)
@NotNull
private Integer bannerIndex;
/**
* banner01bannerbanner
*/
@ApiModelProperty(value = "banner的位置01分表表示主banner教师banner", required = true)
@NotNull
private Integer bannerType;
/**
* banner
*/
@ApiModelProperty(value = "banner的跳转位置", required = true)
private String bannerDest;
public Banner(Integer bannerId,
@NotNull String bannerUrl,
@NotNull Integer bannerIndex,
@NotNull Integer bannerType,
String bannerDest) {
this.bannerId = bannerId;
this.bannerUrl = bannerUrl;
this.bannerIndex = bannerIndex;
this.bannerType = bannerType;
this.bannerDest = bannerDest;
}
public Banner() {
}
public Integer getBannerId() {
return bannerId;
}
public void setBannerId(Integer bannerId) {
this.bannerId = bannerId;
}
public String getBannerUrl() {
return bannerUrl;
}
public void setBannerUrl(String bannerUrl) {
this.bannerUrl = bannerUrl;
}
public Integer getBannerIndex() {
return bannerIndex;
}
public void setBannerIndex(Integer bannerIndex) {
this.bannerIndex = bannerIndex;
}
public Integer getBannerType() {
return bannerType;
}
public void setBannerType(Integer bannerType) {
this.bannerType = bannerType;
}
public String getBannerDest() {
return bannerDest;
}
public void setBannerDest(String bannerDest) {
this.bannerDest = bannerDest;
}
}

@ -0,0 +1,212 @@
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.persistence.Transient;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.io.Serializable;
/**
* (ClassConfig)
*
* @author java
* @since 2020-11-19 16:12:27
*/
@Data
@ApiModel(value = "班次表")
public class ClassConfig implements Serializable {
private static final long serialVersionUID = 627209293304274727L;
/**
*
*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@ApiModelProperty(value = "地区配置编号")
private Integer classConfigId;
/**
*
*/
@ApiModelProperty(value = "班次名称名称", required = true)
@NotNull
private String className;
/**
*
*/
@ApiModelProperty(value = "培训班介绍", required = true)
@NotNull
private String classDesc;
/**
* 123++ 2.+ 3 23线
*/
@ApiModelProperty(value = "类型目前启用123分表表示先上班看课+考试+打印证书 2.考试+打印证书 3只打印证书 23对应线下班", required = true)
private Integer classType;
/**
*
*/
@ApiModelProperty(value = "配图地址", required = true)
@NotNull
private String classLogo;
/**
* PC
*/
@ApiModelProperty(value = "新PC配图地址")
private String classContent;
/**
*
*/
@ApiModelProperty(value = "移动端配图地址")
private String classMobileContent;
/**
*
*/
@ApiModelProperty(value = "地区编号", required = true)
@NotNull
private Integer areaId;
@Transient
@ApiModelProperty(value = "地区名称")
private String areaName;
/**
*
*/
@ApiModelProperty(value = "必修课学时,根据选得必修课自动计算", required = true)
private Float bxHours;
/**
*
*/
@ApiModelProperty(value = "选修课学时,管理员录入", required = true)
private Float xxHours;
/**
*
*/
@ApiModelProperty(value = "考试学分,考试通过自动获取", required = true)
private Float paperHours;
/**
*
*/
@ApiModelProperty(value = "试卷")
private Integer paperId;
/**
*
*/
@ApiModelProperty(value = "创建时间")
private Long createTime;
/**
*
*/
@ApiModelProperty(value = "年份")
private String years;
/**
*
*/
@ApiModelProperty(value = "单价", required = true)
@NotNull
private Double price;
/**
*
*/
@ApiModelProperty(value = "报名开始时间", required = true)
private Long applyStartTime;
/**
*
*/
@ApiModelProperty(value = "报名结束时间", required = true)
private Long applyEndTime;
/**
*
*/
@ApiModelProperty(value = "学习开始时间", required = true)
private Long studyStartTime;
/**
*
*/
@ApiModelProperty(value = "学习结束时间", required = true)
private Long studyEndTime;
/**
*
*/
@ApiModelProperty(value = "考试开始开始时间", required = true)
private Long paperStartTime;
/**
*
*/
@ApiModelProperty(value = "考试结束时间", required = true)
private Long paperEndTime;
/**
*
*/
@ApiModelProperty(value = "打印证书开始时间", required = true)
private Long certStartTime;
/**
*
*/
@ApiModelProperty(value = "打印证书结束时间,可以不限制", required = true)
private Long certEndTime;
/**
*
*/
@ApiModelProperty(value = "是否需要考试", required = true)
@NotNull
private Integer needPaper;
/**
*
*/
@ApiModelProperty(value = "报名上限人数")
private Integer limitNum;
/**
*
*/
@ApiModelProperty(value = "是否有效 0 无效 1有效 ")
private Integer valid;
/**
*
*/
@ApiModelProperty(value = "签证时间")
private Long signTime;
private String prefix;
//测试试卷ID
private Integer testId;
//目标人群
private String target;
}

@ -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,114 @@
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;
/**
* (ClassCourse)
*
* @author java
* @since 2020-11-24 11:33:30
*/
@ApiModel(value = "地区课程表")
public class ClassCourse implements Serializable {
private static final long serialVersionUID = -67544251618141718L;
/**
*
*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@ApiModelProperty(value = "地区课程编号")
private Integer classCourseId;
/**
* ID
*/
@ApiModelProperty(value = "班次ID", required = true)
@NotNull
private Integer classId;
/**
*
*/
@ApiModelProperty(value = "课程编号", required = true)
@NotNull
private Integer courseId;
/**
* 12
*/
@ApiModelProperty(value = "课程类型12分表示必选课可选课", required = true)
@NotNull
private Integer courseType;
/**
*
*/
@ApiModelProperty(value = "创建时间")
private Long createTime;
public ClassCourse(Integer classCourseId, @NotNull Integer classId,
@NotNull Integer courseId,
@NotNull Integer courseType, Long createTime) {
this.classCourseId = classCourseId;
this.classId = classId;
this.courseId = courseId;
this.courseType = courseType;
this.createTime = createTime;
}
public ClassCourse() {
}
public Integer getClassCourseId() {
return classCourseId;
}
public void setClassCourseId(Integer classCourseId) {
this.classCourseId = classCourseId;
}
public Integer getClassId() {
return classId;
}
public void setClassId(Integer classId) {
this.classId = classId;
}
public Integer getCourseId() {
return courseId;
}
public void setCourseId(Integer courseId) {
this.courseId = courseId;
}
public Integer getCourseType() {
return courseType;
}
public void setCourseType(Integer courseType) {
this.courseType = courseType;
}
public Long getCreateTime() {
return createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
}

@ -0,0 +1,190 @@
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;
/**
* (Course)
*
* @author java
* @since 2020-11-09 10:04:45
*/
@ApiModel(value = "课程表")
public class Course implements Serializable {
private static final long serialVersionUID = -89648020880598418L;
/**
* ID
*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@ApiModelProperty(value = "主键ID")
private Integer courseId;
/**
*
*/
@ApiModelProperty(value = "课程名称", required = true)
@NotNull
private String courseName;
/**
*
*/
@ApiModelProperty(value = "图标", required = true)
@NotNull
private String courseLogo;
/**
*
*/
@ApiModelProperty(value = "课程介绍", required = true)
@NotNull
private String courseDesc;
/**
*
*/
@ApiModelProperty(value = "课程时长", required = true)
private Float courseHours;
/**
*
*/
@ApiModelProperty(value = "教师", required = true)
private String courseTeacher;
/**
*
*/
@ApiModelProperty(value = "课程是否上架。下架后不可见")
private Integer isValid;
/**
*
*/
@ApiModelProperty(value = "如果有多张详情图,相册")
private String gallery;
/**
* 使
*/
@ApiModelProperty(value = "保留位,暂不使用")
private Integer reserved1;
/**
*
*/
@ApiModelProperty(value = " 试听时间")
private Integer time;
public Course(Integer courseId, @NotNull String courseName,
@NotNull String courseLogo, @NotNull String courseDesc,
Float courseHours,
String courseTeacher, Integer isValid,
String gallery, Integer reserved1,Integer time) {
this.courseId = courseId;
this.courseName = courseName;
this.courseLogo = courseLogo;
this.courseDesc = courseDesc;
this.courseHours = courseHours;
this.courseTeacher = courseTeacher;
this.isValid = isValid;
this.gallery = gallery;
this.reserved1 = reserved1;
this.time = time;
}
public Course() {
}
public Integer getCourseId() {
return courseId;
}
public void setCourseId(Integer courseId) {
this.courseId = courseId;
}
public String getCourseName() {
return courseName;
}
public void setCourseName(String courseName) {
this.courseName = courseName;
}
public String getCourseLogo() {
return courseLogo;
}
public void setCourseLogo(String courseLogo) {
this.courseLogo = courseLogo;
}
public String getCourseDesc() {
return courseDesc;
}
public void setCourseDesc(String courseDesc) {
this.courseDesc = courseDesc;
}
public Float getCourseHours() {
return courseHours;
}
public void setCourseHours(Float courseHours) {
this.courseHours = courseHours;
}
public String getCourseTeacher() {
return courseTeacher;
}
public void setCourseTeacher(String courseTeacher) {
this.courseTeacher = courseTeacher;
}
public Integer getIsValid() {
return isValid;
}
public void setIsValid(Integer isValid) {
this.isValid = isValid;
}
public String getGallery() {
return gallery;
}
public void setGallery(String gallery) {
this.gallery = gallery;
}
public Integer getReserved1() {
return reserved1;
}
public void setReserved1(Integer reserved1) {
this.reserved1 = reserved1;
}
public Integer getTime() {
return time;
}
public void setTime(Integer time) {
this.time = time;
}
}

@ -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,132 @@
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;
/**
* (CourseChapterTag)
*
* @author java
* @since 2020-11-09 10:04:50
*/
@ApiModel(value = "章节标签表")
public class CourseChapterTag implements Serializable {
private static final long serialVersionUID = 998792510540027363L;
/**
* id
*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@ApiModelProperty(value = "主键id")
private Integer tagId;
/**
*
*/
@ApiModelProperty(value = "标签名", required = true)
@NotNull
private String tagName;
/**
*
*/
@ApiModelProperty(value = "显示索引", required = true)
@NotNull
private Integer tagIndex;
/**
* ID
*/
@ApiModelProperty(value = "章节ID", required = true)
@NotNull
private Integer chapterId;
/**
*
*/
@ApiModelProperty(value = "讲师", required = true)
@NotNull
private String teacherName;
/**
* ID
*/
@ApiModelProperty(value = "课程ID", required = true)
@NotNull
private Integer courseId;
public CourseChapterTag(Integer tagId, @NotNull String tagName,
@NotNull Integer tagIndex, @NotNull Integer chapterId,
@NotNull String teacherName, @NotNull Integer courseId) {
this.tagId = tagId;
this.tagName = tagName;
this.tagIndex = tagIndex;
this.chapterId = chapterId;
this.teacherName = teacherName;
this.courseId = courseId;
}
public CourseChapterTag() {
}
public Integer getTagId() {
return tagId;
}
public void setTagId(Integer tagId) {
this.tagId = tagId;
}
public String getTagName() {
return tagName;
}
public void setTagName(String tagName) {
this.tagName = tagName;
}
public Integer getTagIndex() {
return tagIndex;
}
public void setTagIndex(Integer tagIndex) {
this.tagIndex = tagIndex;
}
public Integer getChapterId() {
return chapterId;
}
public void setChapterId(Integer chapterId) {
this.chapterId = chapterId;
}
public String getTeacherName() {
return teacherName;
}
public void setTeacherName(String teacherName) {
this.teacherName = teacherName;
}
public Integer getCourseId() {
return courseId;
}
public void setCourseId(Integer courseId) {
this.courseId = courseId;
}
}

@ -0,0 +1,98 @@
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;
/**
* /(CourseChapterTest)
*
* @author java
* @since 2020-11-09 10:04:52
*/
@ApiModel(value = "章节测试表")
public class CourseChapterTest implements Serializable {
private static final long serialVersionUID = 314641819841270641L;
/**
* id
*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@ApiModelProperty(value = "主键id")
private Integer testId;
/**
* id
*/
@ApiModelProperty(value = "习题id", required = true)
@NotNull
private Integer questionId;
/**
* id.0
*/
@ApiModelProperty(value = "章节id.目前得系统部分章节默认0", required = true)
@NotNull
private Integer chapterId;
/**
* ID
*/
@ApiModelProperty(value = "课程ID。目前得随堂练习都是配置在图书下得", required = true)
@NotNull
private Integer courseId;
public CourseChapterTest(Integer testId, @NotNull Integer questionId,
@NotNull Integer chapterId, @NotNull Integer courseId) {
this.testId = testId;
this.questionId = questionId;
this.chapterId = chapterId;
this.courseId = courseId;
}
public CourseChapterTest() {
}
public Integer getTestId() {
return testId;
}
public void setTestId(Integer testId) {
this.testId = testId;
}
public Integer getQuestionId() {
return questionId;
}
public void setQuestionId(Integer questionId) {
this.questionId = questionId;
}
public Integer getChapterId() {
return chapterId;
}
public void setChapterId(Integer chapterId) {
this.chapterId = chapterId;
}
public Integer getCourseId() {
return courseId;
}
public void setCourseId(Integer courseId) {
this.courseId = courseId;
}
}

@ -0,0 +1,158 @@
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;
/**
* (CourseChapterVideo)
*
* @author java
* @since 2020-11-09 10:04:54
*/
@ApiModel(value = "章节视频表")
public class CourseChapterVideo implements Serializable {
private static final long serialVersionUID = -21553514386384145L;
/**
* id
*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@ApiModelProperty(value = "主键id")
private Integer videoId;
/**
* idID=NULL
*/
@ApiModelProperty(value = "章节id目前视频直接配置在课程下允许章节ID=NULL", required = true)
@NotNull
private Integer chapterId;
/**
*
*/
@ApiModelProperty(value = "视频名称", required = true)
@NotNull
private String videoName;
/**
*
*/
@ApiModelProperty(value = "视频地址", required = true)
@NotNull
private String videoUrl;
@ApiModelProperty(value = "${column.comment}", required = true)
private String videoOriUrl;
/**
* ID
*/
@ApiModelProperty(value = "视频所属课程ID", required = true)
@NotNull
private Integer courseId;
/**
*
*/
@ApiModelProperty(value = "是否精品课程,精品课程允许试看")
private Integer isFree;
/**
*
*/
@ApiModelProperty(value = "试看时间,分钟")
private Integer freeTime;
public CourseChapterVideo(Integer videoId, @NotNull Integer chapterId,
@NotNull String videoName, @NotNull String videoUrl, String videoOriUrl,
@NotNull Integer courseId, Integer isFree, Integer freeTime) {
this.videoId = videoId;
this.chapterId = chapterId;
this.videoName = videoName;
this.videoUrl = videoUrl;
this.videoOriUrl = videoOriUrl;
this.courseId = courseId;
this.isFree = isFree;
this.freeTime = freeTime;
}
public CourseChapterVideo() {
}
public Integer getVideoId() {
return videoId;
}
public void setVideoId(Integer videoId) {
this.videoId = videoId;
}
public Integer getChapterId() {
return chapterId;
}
public void setChapterId(Integer chapterId) {
this.chapterId = chapterId;
}
public String getVideoName() {
return videoName;
}
public void setVideoName(String videoName) {
this.videoName = videoName;
}
public String getVideoUrl() {
return videoUrl;
}
public void setVideoUrl(String videoUrl) {
this.videoUrl = videoUrl;
}
public String getVideoOriUrl() {
return videoOriUrl;
}
public void setVideoOriUrl(String videoOriUrl) {
this.videoOriUrl = videoOriUrl;
}
public Integer getCourseId() {
return courseId;
}
public void setCourseId(Integer courseId) {
this.courseId = courseId;
}
public Integer getIsFree() {
return isFree;
}
public void setIsFree(Integer isFree) {
this.isFree = isFree;
}
public Integer getFreeTime() {
return freeTime;
}
public void setFreeTime(Integer freeTime) {
this.freeTime = freeTime;
}
}

@ -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…
Cancel
Save