feat:自查自评导出

new-exam
wangxy 1 month ago
parent 15a87dac28
commit b4d83a922c

@ -6,7 +6,7 @@ import org.jasypt.encryption.pbe.config.SimpleStringPBEConfig;
public class EncFactory {
public static void main(String[] args) {
String securityKey = "BUSINESS"; // 加密秘钥
String data = "123456"; // 需要加密的字符串
String data = "Admin@9000"; // 需要加密的字符串
PooledPBEStringEncryptor encryptor = new PooledPBEStringEncryptor();
SimpleStringPBEConfig config = new SimpleStringPBEConfig();

@ -1,10 +1,9 @@
package com.ruoyi.system.domain.check.dto;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import java.io.Serializable;
import java.util.Date;
@ -25,21 +24,25 @@ public class TdCheckReportDTO implements Serializable {
/**
*
*/
@Excel(name = "检查人员")
private String adduser;
/**
*
*/
@Excel(name = "检查单位")
private String depart;
/**
*
*/
@Excel(name = "检查开始时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date checkStartTime;
/**
*
*/
@Excel(name = "检查结束时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date checkEndTime;
/**
@ -50,11 +53,13 @@ public class TdCheckReportDTO implements Serializable {
/**
*
*/
@Excel(name = "所属市州")
private String area;
/**
*
*/
@Excel(name = "所属区县")
private String framework;
/**
@ -76,16 +81,19 @@ public class TdCheckReportDTO implements Serializable {
/**
*
*/
@Excel(name = "实有项目总分")
private String totalScore;
/**
*
*/
@Excel(name = "实有项目得分")
private String realScore;
/**
*
*/
@Excel(name = "得分占比")
private String percentageScore;
/**

@ -1,10 +1,9 @@
package com.ruoyi.system.domain.check.dto;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import java.io.Serializable;
@ -28,12 +27,14 @@ public class TdCheckTypeDTO implements Serializable {
/**
*
*/
private String checkType;
/**
*
*/
@Excel(name = "自查类")
private String typeName;
/**
@ -45,23 +46,27 @@ public class TdCheckTypeDTO implements Serializable {
/**
*
*/
@Excel(name = "自查项")
private String checkItems;
/**
*
*/
@Excel(name = "自查内容")
private String typeContent;
/**
*
*/
@Excel(name = "分值")
private String score;
/**
*
*/
@Excel(name = "得分")
private String realScore;
/**
@ -73,6 +78,7 @@ public class TdCheckTypeDTO implements Serializable {
/**
*
*/
@Excel(name = "扣分标准")
private String deductionCriteria;
/**

Loading…
Cancel
Save