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 class EncFactory {
public static void main(String[] args) { public static void main(String[] args) {
String securityKey = "BUSINESS"; // 加密秘钥 String securityKey = "BUSINESS"; // 加密秘钥
String data = "123456"; // 需要加密的字符串 String data = "Admin@9000"; // 需要加密的字符串
PooledPBEStringEncryptor encryptor = new PooledPBEStringEncryptor(); PooledPBEStringEncryptor encryptor = new PooledPBEStringEncryptor();
SimpleStringPBEConfig config = new SimpleStringPBEConfig(); SimpleStringPBEConfig config = new SimpleStringPBEConfig();

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

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

Loading…
Cancel
Save