parent
ff75393369
commit
09937a8e32
@ -0,0 +1,61 @@
|
|||||||
|
# 数据源配置
|
||||||
|
spring:
|
||||||
|
datasource:
|
||||||
|
type: com.alibaba.druid.pool.DruidDataSource
|
||||||
|
driverClassName: com.mysql.cj.jdbc.Driver
|
||||||
|
druid:
|
||||||
|
# 主库数据源
|
||||||
|
master:
|
||||||
|
url: jdbc:mysql://localhost:3306/kaohe?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
|
||||||
|
username: kaohe
|
||||||
|
password: YTxpN2teMKfBmGNM
|
||||||
|
# 从库数据源
|
||||||
|
slave:
|
||||||
|
# 从数据源开关/默认关闭
|
||||||
|
enabled: false
|
||||||
|
url:
|
||||||
|
username:
|
||||||
|
password:
|
||||||
|
# 初始连接数
|
||||||
|
initialSize: 5
|
||||||
|
# 最小连接池数量
|
||||||
|
minIdle: 10
|
||||||
|
# 最大连接池数量
|
||||||
|
maxActive: 20
|
||||||
|
# 配置获取连接等待超时的时间
|
||||||
|
maxWait: 60000
|
||||||
|
# 配置连接超时时间
|
||||||
|
connectTimeout: 30000
|
||||||
|
# 配置网络超时时间
|
||||||
|
socketTimeout: 60000
|
||||||
|
# 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
|
||||||
|
timeBetweenEvictionRunsMillis: 60000
|
||||||
|
# 配置一个连接在池中最小生存的时间,单位是毫秒
|
||||||
|
minEvictableIdleTimeMillis: 300000
|
||||||
|
# 配置一个连接在池中最大生存的时间,单位是毫秒
|
||||||
|
maxEvictableIdleTimeMillis: 900000
|
||||||
|
# 配置检测连接是否有效
|
||||||
|
validationQuery: SELECT 1 FROM DUAL
|
||||||
|
testWhileIdle: true
|
||||||
|
testOnBorrow: false
|
||||||
|
testOnReturn: false
|
||||||
|
webStatFilter:
|
||||||
|
enabled: true
|
||||||
|
statViewServlet:
|
||||||
|
enabled: true
|
||||||
|
# 设置白名单,不填则允许所有访问
|
||||||
|
allow:
|
||||||
|
url-pattern: /druid/*
|
||||||
|
# 控制台管理用户名和密码
|
||||||
|
login-username: ruoyi
|
||||||
|
login-password: 123456
|
||||||
|
filter:
|
||||||
|
stat:
|
||||||
|
enabled: true
|
||||||
|
# 慢SQL记录
|
||||||
|
log-slow-sql: true
|
||||||
|
slow-sql-millis: 1000
|
||||||
|
merge-sql: true
|
||||||
|
wall:
|
||||||
|
config:
|
||||||
|
multi-statement-allow: true
|
||||||
@ -0,0 +1,166 @@
|
|||||||
|
package com.ruoyi.kaohe.domain;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import com.ruoyi.common.annotation.Excel;
|
||||||
|
import com.ruoyi.common.core.domain.BaseEntity;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 投票记录对象 kh_vote_recard
|
||||||
|
*
|
||||||
|
* @author hs
|
||||||
|
* @date 2025-06-17
|
||||||
|
*/
|
||||||
|
public class KhVoteRecardParam extends BaseEntity
|
||||||
|
{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** 评测id */
|
||||||
|
@Excel(name = "评测id")
|
||||||
|
private Long pcId;
|
||||||
|
|
||||||
|
/** 考核类型id */
|
||||||
|
@Excel(name = "考核类型id")
|
||||||
|
private Long khitemTypeid;
|
||||||
|
|
||||||
|
/** 考核项id */
|
||||||
|
@Excel(name = "考核项id")
|
||||||
|
private Long khitemId;
|
||||||
|
|
||||||
|
/** 投票活动id */
|
||||||
|
@Excel(name = "投票活动id")
|
||||||
|
private Long voteId;
|
||||||
|
|
||||||
|
/** 用户id */
|
||||||
|
@Excel(name = "用户id")
|
||||||
|
private Long userId;
|
||||||
|
|
||||||
|
/** 用户名 */
|
||||||
|
@Excel(name = "用户名")
|
||||||
|
private String userName;
|
||||||
|
|
||||||
|
/** 投票人uid */
|
||||||
|
@Excel(name = "投票人uid")
|
||||||
|
private String uid;
|
||||||
|
|
||||||
|
/** 投票人 */
|
||||||
|
@Excel(name = "投票人")
|
||||||
|
private String tprName;
|
||||||
|
|
||||||
|
/** 评分详情 */
|
||||||
|
@Excel(name = "评分详情")
|
||||||
|
private String voteDetails;
|
||||||
|
|
||||||
|
/** 投票时间 */
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||||
|
@Excel(name = "投票时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
private Date voteTime;
|
||||||
|
|
||||||
|
/** IP */
|
||||||
|
@Excel(name = "IP")
|
||||||
|
private String ipAddress;
|
||||||
|
|
||||||
|
private List<KhVoteEmp> voteEmpList;
|
||||||
|
|
||||||
|
public Long getKhitemTypeid() {
|
||||||
|
return khitemTypeid;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKhitemTypeid(Long khitemTypeid) {
|
||||||
|
this.khitemTypeid = khitemTypeid;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getPcId() {
|
||||||
|
return pcId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPcId(Long pcId) {
|
||||||
|
this.pcId = pcId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getKhitemId() {
|
||||||
|
return khitemId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKhitemId(Long khitemId) {
|
||||||
|
this.khitemId = khitemId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getVoteId() {
|
||||||
|
return voteId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVoteId(Long voteId) {
|
||||||
|
this.voteId = voteId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getUserId() {
|
||||||
|
return userId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUserId(Long userId) {
|
||||||
|
this.userId = userId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUserName() {
|
||||||
|
return userName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUserName(String userName) {
|
||||||
|
this.userName = userName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUid() {
|
||||||
|
return uid;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUid(String uid) {
|
||||||
|
this.uid = uid;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTprName() {
|
||||||
|
return tprName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTprName(String tprName) {
|
||||||
|
this.tprName = tprName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getVoteDetails() {
|
||||||
|
return voteDetails;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVoteDetails(String voteDetails) {
|
||||||
|
this.voteDetails = voteDetails;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getVoteTime() {
|
||||||
|
return voteTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVoteTime(Date voteTime) {
|
||||||
|
this.voteTime = voteTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getIpAddress() {
|
||||||
|
return ipAddress;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIpAddress(String ipAddress) {
|
||||||
|
this.ipAddress = ipAddress;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<KhVoteEmp> getVoteEmpList() {
|
||||||
|
return voteEmpList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVoteEmpList(List<KhVoteEmp> voteEmpList) {
|
||||||
|
this.voteEmpList = voteEmpList;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in new issue