逆向生成修复

master
whb 11 months ago
parent 5d67a614dc
commit 5c6f28fa22

@ -12,23 +12,17 @@ public class StuUser {
@ApiModelProperty("用户ID") @ApiModelProperty("用户ID")
private String userId; private String userId;
@ApiModelProperty("用户名") @ApiModelProperty("学号")
private String username; private String studentId;
@ApiModelProperty("密码")
private String password;
@ApiModelProperty("姓名") @ApiModelProperty("姓名")
private String name; private String name;
@ApiModelProperty("角色权限") @ApiModelProperty("密码")
private String roleId; private String password;
@ApiModelProperty("学校ID")
private String schoolId;
@ApiModelProperty("学校名称") @ApiModelProperty("3老师 4学生")
private String schoolName; private Integer roleId;
@ApiModelProperty("班级ID") @ApiModelProperty("班级ID")
private String classId; private String classId;
@ -36,74 +30,68 @@ public class StuUser {
@ApiModelProperty("班级名称") @ApiModelProperty("班级名称")
private String className; private String className;
@ApiModelProperty("电话")
private String phone;
private String collegeId;
private String collegeName;
@ApiModelProperty("学号")
private String studentId;
@ApiModelProperty("专业") @ApiModelProperty("专业")
private String major; private String major;
@ApiModelProperty("专业ID") @ApiModelProperty("学校ID")
private String majorId; private String schoolId;
private String majorName; @ApiModelProperty("学校名称")
private String schoolName;
@ApiModelProperty("5g成绩") @ApiModelProperty("哈希函数成绩")
private BigDecimal fiveScore; private BigDecimal hashFunctionScore;
@ApiModelProperty("人工智能成绩") @ApiModelProperty("区块链成绩")
private BigDecimal artificialIntelligenceScore; private BigDecimal blockchainScore;
@ApiModelProperty("数据成绩") @ApiModelProperty("数据成绩")
private BigDecimal bigDataScore; private BigDecimal dataLayerScore;
@ApiModelProperty("云计算成绩") @ApiModelProperty("网络层成绩")
private BigDecimal cloudComputeScore; private BigDecimal networkLayerScore;
@ApiModelProperty("物联网成绩") @ApiModelProperty("共识层成绩")
private BigDecimal internetOfThingsSocre; private BigDecimal consensusLayerSocre;
@ApiModelProperty("虚拟现实成绩") @ApiModelProperty("激励层成绩")
private BigDecimal virtualRealitySocre; private BigDecimal excitingLayerSocre;
@ApiModelProperty("工业互联网成绩") @ApiModelProperty("合约层成绩")
private BigDecimal industrialInternetSocre; private BigDecimal contractLayerSocre;
@ApiModelProperty("数字产业化成绩") @ApiModelProperty("区块链概念成绩")
private BigDecimal digitalIndustryScore; private BigDecimal conceptScore;
@ApiModelProperty("数字产业化排名") @ApiModelProperty("区块链概念排名")
private Integer digitalIndustryRank; private Integer conceptRank;
@ApiModelProperty("数字化治理成绩") @ApiModelProperty("区块链技术成绩")
private BigDecimal digitalGoverSocre; private BigDecimal technologySocre;
@ApiModelProperty("数字化治理排名") @ApiModelProperty("区块链技术排名")
private Integer digitalGoverRank; private Integer technologyRank;
@ApiModelProperty("数字贸易成绩") @ApiModelProperty("数字货币成绩")
private BigDecimal digitalTradeScore; private BigDecimal digitalCurrencyScore;
@ApiModelProperty("数字金融成绩") @ApiModelProperty("数字货币排名")
private BigDecimal digitalFinanceScore; private Integer digitalCurrencyRank;
@ApiModelProperty("数据价值化成绩") @ApiModelProperty("区块链发票成绩")
private BigDecimal valueDataScore; private BigDecimal invoiceScore;
@ApiModelProperty("数据价值化排名") @ApiModelProperty("区块链供应链金融成绩")
private Integer valueDataRank; private BigDecimal supplyChainFinanceScore;
@ApiModelProperty("产业数字化成绩") @ApiModelProperty("区块链溯源和防伪成绩")
private BigDecimal industryDigitalScore; private BigDecimal traceabilityAndAntiCounterfeitingScore;
@ApiModelProperty("产业数字化排名") @ApiModelProperty("区块链票据成绩")
private Integer industryDigitalRank; private BigDecimal ticketResultsScore;
@ApiModelProperty("区块链跨境支付成绩")
private BigDecimal crossBorderPaymentResultsScore;
@ApiModelProperty("总排名(学校)") @ApiModelProperty("总排名(学校)")
private Integer totalRank; private Integer totalRank;
@ -119,20 +107,12 @@ public class StuUser {
this.userId = userId == null ? null : userId.trim(); this.userId = userId == null ? null : userId.trim();
} }
public String getUsername() { public String getStudentId() {
return username; return studentId;
}
public void setUsername(String username) {
this.username = username == null ? null : username.trim();
}
public String getPassword() {
return password;
} }
public void setPassword(String password) { public void setStudentId(String studentId) {
this.password = password == null ? null : password.trim(); this.studentId = studentId == null ? null : studentId.trim();
} }
public String getName() { public String getName() {
@ -143,28 +123,20 @@ public class StuUser {
this.name = name == null ? null : name.trim(); this.name = name == null ? null : name.trim();
} }
public String getRoleId() { public String getPassword() {
return roleId; return password;
}
public void setRoleId(String roleId) {
this.roleId = roleId == null ? null : roleId.trim();
}
public String getSchoolId() {
return schoolId;
} }
public void setSchoolId(String schoolId) { public void setPassword(String password) {
this.schoolId = schoolId == null ? null : schoolId.trim(); this.password = password == null ? null : password.trim();
} }
public String getSchoolName() { public Integer getRoleId() {
return schoolName; return roleId;
} }
public void setSchoolName(String schoolName) { public void setRoleId(Integer roleId) {
this.schoolName = schoolName == null ? null : schoolName.trim(); this.roleId = roleId;
} }
public String getClassId() { public String getClassId() {
@ -183,38 +155,6 @@ public class StuUser {
this.className = className == null ? null : className.trim(); this.className = className == null ? null : className.trim();
} }
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone == null ? null : phone.trim();
}
public String getCollegeId() {
return collegeId;
}
public void setCollegeId(String collegeId) {
this.collegeId = collegeId == null ? null : collegeId.trim();
}
public String getCollegeName() {
return collegeName;
}
public void setCollegeName(String collegeName) {
this.collegeName = collegeName == null ? null : collegeName.trim();
}
public String getStudentId() {
return studentId;
}
public void setStudentId(String studentId) {
this.studentId = studentId == null ? null : studentId.trim();
}
public String getMajor() { public String getMajor() {
return major; return major;
} }
@ -223,156 +163,164 @@ public class StuUser {
this.major = major == null ? null : major.trim(); this.major = major == null ? null : major.trim();
} }
public String getMajorId() { public String getSchoolId() {
return majorId; return schoolId;
} }
public void setMajorId(String majorId) { public void setSchoolId(String schoolId) {
this.majorId = majorId == null ? null : majorId.trim(); this.schoolId = schoolId == null ? null : schoolId.trim();
}
public String getSchoolName() {
return schoolName;
}
public void setSchoolName(String schoolName) {
this.schoolName = schoolName == null ? null : schoolName.trim();
} }
public String getMajorName() { public BigDecimal getHashFunctionScore() {
return majorName; return hashFunctionScore;
} }
public void setMajorName(String majorName) { public void setHashFunctionScore(BigDecimal hashFunctionScore) {
this.majorName = majorName == null ? null : majorName.trim(); this.hashFunctionScore = hashFunctionScore;
} }
public BigDecimal getFiveScore() { public BigDecimal getBlockchainScore() {
return fiveScore; return blockchainScore;
} }
public void setFiveScore(BigDecimal fiveScore) { public void setBlockchainScore(BigDecimal blockchainScore) {
this.fiveScore = fiveScore; this.blockchainScore = blockchainScore;
} }
public BigDecimal getArtificialIntelligenceScore() { public BigDecimal getDataLayerScore() {
return artificialIntelligenceScore; return dataLayerScore;
} }
public void setArtificialIntelligenceScore(BigDecimal artificialIntelligenceScore) { public void setDataLayerScore(BigDecimal dataLayerScore) {
this.artificialIntelligenceScore = artificialIntelligenceScore; this.dataLayerScore = dataLayerScore;
} }
public BigDecimal getBigDataScore() { public BigDecimal getNetworkLayerScore() {
return bigDataScore; return networkLayerScore;
} }
public void setBigDataScore(BigDecimal bigDataScore) { public void setNetworkLayerScore(BigDecimal networkLayerScore) {
this.bigDataScore = bigDataScore; this.networkLayerScore = networkLayerScore;
} }
public BigDecimal getCloudComputeScore() { public BigDecimal getConsensusLayerSocre() {
return cloudComputeScore; return consensusLayerSocre;
} }
public void setCloudComputeScore(BigDecimal cloudComputeScore) { public void setConsensusLayerSocre(BigDecimal consensusLayerSocre) {
this.cloudComputeScore = cloudComputeScore; this.consensusLayerSocre = consensusLayerSocre;
} }
public BigDecimal getInternetOfThingsSocre() { public BigDecimal getExcitingLayerSocre() {
return internetOfThingsSocre; return excitingLayerSocre;
} }
public void setInternetOfThingsSocre(BigDecimal internetOfThingsSocre) { public void setExcitingLayerSocre(BigDecimal excitingLayerSocre) {
this.internetOfThingsSocre = internetOfThingsSocre; this.excitingLayerSocre = excitingLayerSocre;
} }
public BigDecimal getVirtualRealitySocre() { public BigDecimal getContractLayerSocre() {
return virtualRealitySocre; return contractLayerSocre;
} }
public void setVirtualRealitySocre(BigDecimal virtualRealitySocre) { public void setContractLayerSocre(BigDecimal contractLayerSocre) {
this.virtualRealitySocre = virtualRealitySocre; this.contractLayerSocre = contractLayerSocre;
} }
public BigDecimal getIndustrialInternetSocre() { public BigDecimal getConceptScore() {
return industrialInternetSocre; return conceptScore;
} }
public void setIndustrialInternetSocre(BigDecimal industrialInternetSocre) { public void setConceptScore(BigDecimal conceptScore) {
this.industrialInternetSocre = industrialInternetSocre; this.conceptScore = conceptScore;
} }
public BigDecimal getDigitalIndustryScore() { public Integer getConceptRank() {
return digitalIndustryScore; return conceptRank;
} }
public void setDigitalIndustryScore(BigDecimal digitalIndustryScore) { public void setConceptRank(Integer conceptRank) {
this.digitalIndustryScore = digitalIndustryScore; this.conceptRank = conceptRank;
} }
public Integer getDigitalIndustryRank() { public BigDecimal getTechnologySocre() {
return digitalIndustryRank; return technologySocre;
} }
public void setDigitalIndustryRank(Integer digitalIndustryRank) { public void setTechnologySocre(BigDecimal technologySocre) {
this.digitalIndustryRank = digitalIndustryRank; this.technologySocre = technologySocre;
} }
public BigDecimal getDigitalGoverSocre() { public Integer getTechnologyRank() {
return digitalGoverSocre; return technologyRank;
} }
public void setDigitalGoverSocre(BigDecimal digitalGoverSocre) { public void setTechnologyRank(Integer technologyRank) {
this.digitalGoverSocre = digitalGoverSocre; this.technologyRank = technologyRank;
} }
public Integer getDigitalGoverRank() { public BigDecimal getDigitalCurrencyScore() {
return digitalGoverRank; return digitalCurrencyScore;
} }
public void setDigitalGoverRank(Integer digitalGoverRank) { public void setDigitalCurrencyScore(BigDecimal digitalCurrencyScore) {
this.digitalGoverRank = digitalGoverRank; this.digitalCurrencyScore = digitalCurrencyScore;
} }
public BigDecimal getDigitalTradeScore() { public Integer getDigitalCurrencyRank() {
return digitalTradeScore; return digitalCurrencyRank;
} }
public void setDigitalTradeScore(BigDecimal digitalTradeScore) { public void setDigitalCurrencyRank(Integer digitalCurrencyRank) {
this.digitalTradeScore = digitalTradeScore; this.digitalCurrencyRank = digitalCurrencyRank;
} }
public BigDecimal getDigitalFinanceScore() { public BigDecimal getInvoiceScore() {
return digitalFinanceScore; return invoiceScore;
} }
public void setDigitalFinanceScore(BigDecimal digitalFinanceScore) { public void setInvoiceScore(BigDecimal invoiceScore) {
this.digitalFinanceScore = digitalFinanceScore; this.invoiceScore = invoiceScore;
} }
public BigDecimal getValueDataScore() { public BigDecimal getSupplyChainFinanceScore() {
return valueDataScore; return supplyChainFinanceScore;
} }
public void setValueDataScore(BigDecimal valueDataScore) { public void setSupplyChainFinanceScore(BigDecimal supplyChainFinanceScore) {
this.valueDataScore = valueDataScore; this.supplyChainFinanceScore = supplyChainFinanceScore;
} }
public Integer getValueDataRank() { public BigDecimal getTraceabilityAndAntiCounterfeitingScore() {
return valueDataRank; return traceabilityAndAntiCounterfeitingScore;
} }
public void setValueDataRank(Integer valueDataRank) { public void setTraceabilityAndAntiCounterfeitingScore(BigDecimal traceabilityAndAntiCounterfeitingScore) {
this.valueDataRank = valueDataRank; this.traceabilityAndAntiCounterfeitingScore = traceabilityAndAntiCounterfeitingScore;
} }
public BigDecimal getIndustryDigitalScore() { public BigDecimal getTicketResultsScore() {
return industryDigitalScore; return ticketResultsScore;
} }
public void setIndustryDigitalScore(BigDecimal industryDigitalScore) { public void setTicketResultsScore(BigDecimal ticketResultsScore) {
this.industryDigitalScore = industryDigitalScore; this.ticketResultsScore = ticketResultsScore;
} }
public Integer getIndustryDigitalRank() { public BigDecimal getCrossBorderPaymentResultsScore() {
return industryDigitalRank; return crossBorderPaymentResultsScore;
} }
public void setIndustryDigitalRank(Integer industryDigitalRank) { public void setCrossBorderPaymentResultsScore(BigDecimal crossBorderPaymentResultsScore) {
this.industryDigitalRank = industryDigitalRank; this.crossBorderPaymentResultsScore = crossBorderPaymentResultsScore;
} }
public Integer getTotalRank() { public Integer getTotalRank() {

@ -2,7 +2,7 @@
<!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd"> "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration> <generatorConfiguration>
<context id="DB2Tables" targetRuntime="MyBatis3"> <context id="DB2Tables" targetRuntime="MyBatis3" defaultModelType="flat">
<!-- <commentGenerator>--> <!-- <commentGenerator>-->
<!-- <property name="suppressAllComments" value="true"/>--> <!-- <property name="suppressAllComments" value="true"/>-->
<!-- </commentGenerator>--> <!-- </commentGenerator>-->
@ -19,7 +19,8 @@
<jdbcConnection driverClass="com.mysql.cj.jdbc.Driver" <jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
connectionURL="jdbc:mysql://118.31.7.2:3306/tz_digital_credit" userId="root" connectionURL="jdbc:mysql://118.31.7.2:3306/tz_digital_credit" userId="root"
password="sztzjy2017"> password="sztzjy2017">
<property name="useInformationSchema" value="true"/> <!--useInformationSchema 实体类上添加数据表的注释 --> <property name="useInformationSchema" value="true"/>
<property name="nullCatalogMeansCurrent" value="true"/><!--useInformationSchema 实体类上添加数据表的注释 -->
</jdbcConnection> </jdbcConnection>
<!-- 配置实体类的位置 --> <!-- 配置实体类的位置 -->

@ -3,38 +3,33 @@
<mapper namespace="com.sztzjy.digital_credit.mapper.StuUserMapper"> <mapper namespace="com.sztzjy.digital_credit.mapper.StuUserMapper">
<resultMap id="BaseResultMap" type="com.sztzjy.digital_credit.entity.StuUser"> <resultMap id="BaseResultMap" type="com.sztzjy.digital_credit.entity.StuUser">
<id column="user_id" jdbcType="VARCHAR" property="userId" /> <id column="user_id" jdbcType="VARCHAR" property="userId" />
<result column="username" jdbcType="VARCHAR" property="username" /> <result column="student_id" jdbcType="VARCHAR" property="studentId" />
<result column="password" jdbcType="VARCHAR" property="password" />
<result column="name" jdbcType="VARCHAR" property="name" /> <result column="name" jdbcType="VARCHAR" property="name" />
<result column="role_id" jdbcType="VARCHAR" property="roleId" /> <result column="password" jdbcType="VARCHAR" property="password" />
<result column="school_id" jdbcType="VARCHAR" property="schoolId" /> <result column="role_id" jdbcType="INTEGER" property="roleId" />
<result column="school_name" jdbcType="VARCHAR" property="schoolName" />
<result column="class_id" jdbcType="VARCHAR" property="classId" /> <result column="class_id" jdbcType="VARCHAR" property="classId" />
<result column="class_name" jdbcType="VARCHAR" property="className" /> <result column="class_name" jdbcType="VARCHAR" property="className" />
<result column="phone" jdbcType="VARCHAR" property="phone" />
<result column="college_id" jdbcType="VARCHAR" property="collegeId" />
<result column="college_name" jdbcType="VARCHAR" property="collegeName" />
<result column="student_id" jdbcType="VARCHAR" property="studentId" />
<result column="major" jdbcType="VARCHAR" property="major" /> <result column="major" jdbcType="VARCHAR" property="major" />
<result column="major_id" jdbcType="VARCHAR" property="majorId" /> <result column="school_id" jdbcType="VARCHAR" property="schoolId" />
<result column="major_name" jdbcType="VARCHAR" property="majorName" /> <result column="school_name" jdbcType="VARCHAR" property="schoolName" />
<result column="five_score" jdbcType="DECIMAL" property="fiveScore" /> <result column="hash_function_score" jdbcType="DECIMAL" property="hashFunctionScore" />
<result column="artificial_intelligence_score" jdbcType="DECIMAL" property="artificialIntelligenceScore" /> <result column="blockchain_score" jdbcType="DECIMAL" property="blockchainScore" />
<result column="big_data_score" jdbcType="DECIMAL" property="bigDataScore" /> <result column="data_layer_score" jdbcType="DECIMAL" property="dataLayerScore" />
<result column="cloud_compute_score" jdbcType="DECIMAL" property="cloudComputeScore" /> <result column="network_layer_score" jdbcType="DECIMAL" property="networkLayerScore" />
<result column="internet_of_things_socre" jdbcType="DECIMAL" property="internetOfThingsSocre" /> <result column="consensus_layer_socre" jdbcType="DECIMAL" property="consensusLayerSocre" />
<result column="virtual_reality_socre" jdbcType="DECIMAL" property="virtualRealitySocre" /> <result column="exciting_layer_socre" jdbcType="DECIMAL" property="excitingLayerSocre" />
<result column="industrial_internet_socre" jdbcType="DECIMAL" property="industrialInternetSocre" /> <result column="contract_layer_socre" jdbcType="DECIMAL" property="contractLayerSocre" />
<result column="digital_industry_score" jdbcType="DECIMAL" property="digitalIndustryScore" /> <result column="concept_score" jdbcType="DECIMAL" property="conceptScore" />
<result column="digital_industry_rank" jdbcType="INTEGER" property="digitalIndustryRank" /> <result column="concept_rank" jdbcType="INTEGER" property="conceptRank" />
<result column="digital_gover_socre" jdbcType="DECIMAL" property="digitalGoverSocre" /> <result column="technology_socre" jdbcType="DECIMAL" property="technologySocre" />
<result column="digital_gover_rank" jdbcType="INTEGER" property="digitalGoverRank" /> <result column="technology_rank" jdbcType="INTEGER" property="technologyRank" />
<result column="digital_trade_score" jdbcType="DECIMAL" property="digitalTradeScore" /> <result column="digital_currency_score" jdbcType="DECIMAL" property="digitalCurrencyScore" />
<result column="digital_finance_score" jdbcType="DECIMAL" property="digitalFinanceScore" /> <result column="digital_currency_rank" jdbcType="INTEGER" property="digitalCurrencyRank" />
<result column="value_data_score" jdbcType="DECIMAL" property="valueDataScore" /> <result column="invoice_score" jdbcType="DECIMAL" property="invoiceScore" />
<result column="value_data_rank" jdbcType="INTEGER" property="valueDataRank" /> <result column="supply_chain_finance_score" jdbcType="DECIMAL" property="supplyChainFinanceScore" />
<result column="industry_digital_score" jdbcType="DECIMAL" property="industryDigitalScore" /> <result column="traceability_and_anti_counterfeiting_score" jdbcType="DECIMAL" property="traceabilityAndAntiCounterfeitingScore" />
<result column="industry_digital_rank" jdbcType="INTEGER" property="industryDigitalRank" /> <result column="ticket_results_score" jdbcType="DECIMAL" property="ticketResultsScore" />
<result column="cross_border_payment_results_score" jdbcType="DECIMAL" property="crossBorderPaymentResultsScore" />
<result column="total_rank" jdbcType="INTEGER" property="totalRank" /> <result column="total_rank" jdbcType="INTEGER" property="totalRank" />
<result column="total_score" jdbcType="DECIMAL" property="totalScore" /> <result column="total_score" jdbcType="DECIMAL" property="totalScore" />
</resultMap> </resultMap>
@ -97,13 +92,12 @@
</where> </where>
</sql> </sql>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
user_id, username, password, name, role_id, school_id, school_name, class_id, class_name, user_id, student_id, name, password, role_id, class_id, class_name, major, school_id,
phone, college_id, college_name, student_id, major, major_id, major_name, five_score, school_name, hash_function_score, blockchain_score, data_layer_score, network_layer_score,
artificial_intelligence_score, big_data_score, cloud_compute_score, internet_of_things_socre, consensus_layer_socre, exciting_layer_socre, contract_layer_socre, concept_score,
virtual_reality_socre, industrial_internet_socre, digital_industry_score, digital_industry_rank, concept_rank, technology_socre, technology_rank, digital_currency_score, digital_currency_rank,
digital_gover_socre, digital_gover_rank, digital_trade_score, digital_finance_score, invoice_score, supply_chain_finance_score, traceability_and_anti_counterfeiting_score,
value_data_score, value_data_rank, industry_digital_score, industry_digital_rank, ticket_results_score, cross_border_payment_results_score, total_rank, total_score
total_rank, total_score
</sql> </sql>
<select id="selectByExample" parameterType="com.sztzjy.digital_credit.entity.StuUserExample" resultMap="BaseResultMap"> <select id="selectByExample" parameterType="com.sztzjy.digital_credit.entity.StuUserExample" resultMap="BaseResultMap">
select select
@ -136,32 +130,30 @@
</if> </if>
</delete> </delete>
<insert id="insert" parameterType="com.sztzjy.digital_credit.entity.StuUser"> <insert id="insert" parameterType="com.sztzjy.digital_credit.entity.StuUser">
insert into stu_user (user_id, username, password, insert into stu_user (user_id, student_id, name,
name, role_id, school_id, password, role_id, class_id,
school_name, class_id, class_name, class_name, major, school_id,
phone, college_id, college_name, school_name, hash_function_score, blockchain_score,
student_id, major, major_id, data_layer_score, network_layer_score, consensus_layer_socre,
major_name, five_score, artificial_intelligence_score, exciting_layer_socre, contract_layer_socre,
big_data_score, cloud_compute_score, internet_of_things_socre, concept_score, concept_rank, technology_socre,
virtual_reality_socre, industrial_internet_socre, technology_rank, digital_currency_score, digital_currency_rank,
digital_industry_score, digital_industry_rank, invoice_score, supply_chain_finance_score,
digital_gover_socre, digital_gover_rank, digital_trade_score, traceability_and_anti_counterfeiting_score, ticket_results_score,
digital_finance_score, value_data_score, value_data_rank, cross_border_payment_results_score, total_rank,
industry_digital_score, industry_digital_rank, total_score)
total_rank, total_score) values (#{userId,jdbcType=VARCHAR}, #{studentId,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
values (#{userId,jdbcType=VARCHAR}, #{username,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}, #{roleId,jdbcType=INTEGER}, #{classId,jdbcType=VARCHAR},
#{name,jdbcType=VARCHAR}, #{roleId,jdbcType=VARCHAR}, #{schoolId,jdbcType=VARCHAR}, #{className,jdbcType=VARCHAR}, #{major,jdbcType=VARCHAR}, #{schoolId,jdbcType=VARCHAR},
#{schoolName,jdbcType=VARCHAR}, #{classId,jdbcType=VARCHAR}, #{className,jdbcType=VARCHAR}, #{schoolName,jdbcType=VARCHAR}, #{hashFunctionScore,jdbcType=DECIMAL}, #{blockchainScore,jdbcType=DECIMAL},
#{phone,jdbcType=VARCHAR}, #{collegeId,jdbcType=VARCHAR}, #{collegeName,jdbcType=VARCHAR}, #{dataLayerScore,jdbcType=DECIMAL}, #{networkLayerScore,jdbcType=DECIMAL}, #{consensusLayerSocre,jdbcType=DECIMAL},
#{studentId,jdbcType=VARCHAR}, #{major,jdbcType=VARCHAR}, #{majorId,jdbcType=VARCHAR}, #{excitingLayerSocre,jdbcType=DECIMAL}, #{contractLayerSocre,jdbcType=DECIMAL},
#{majorName,jdbcType=VARCHAR}, #{fiveScore,jdbcType=DECIMAL}, #{artificialIntelligenceScore,jdbcType=DECIMAL}, #{conceptScore,jdbcType=DECIMAL}, #{conceptRank,jdbcType=INTEGER}, #{technologySocre,jdbcType=DECIMAL},
#{bigDataScore,jdbcType=DECIMAL}, #{cloudComputeScore,jdbcType=DECIMAL}, #{internetOfThingsSocre,jdbcType=DECIMAL}, #{technologyRank,jdbcType=INTEGER}, #{digitalCurrencyScore,jdbcType=DECIMAL}, #{digitalCurrencyRank,jdbcType=INTEGER},
#{virtualRealitySocre,jdbcType=DECIMAL}, #{industrialInternetSocre,jdbcType=DECIMAL}, #{invoiceScore,jdbcType=DECIMAL}, #{supplyChainFinanceScore,jdbcType=DECIMAL},
#{digitalIndustryScore,jdbcType=DECIMAL}, #{digitalIndustryRank,jdbcType=INTEGER}, #{traceabilityAndAntiCounterfeitingScore,jdbcType=DECIMAL}, #{ticketResultsScore,jdbcType=DECIMAL},
#{digitalGoverSocre,jdbcType=DECIMAL}, #{digitalGoverRank,jdbcType=INTEGER}, #{digitalTradeScore,jdbcType=DECIMAL}, #{crossBorderPaymentResultsScore,jdbcType=DECIMAL}, #{totalRank,jdbcType=INTEGER},
#{digitalFinanceScore,jdbcType=DECIMAL}, #{valueDataScore,jdbcType=DECIMAL}, #{valueDataRank,jdbcType=INTEGER}, #{totalScore,jdbcType=DECIMAL})
#{industryDigitalScore,jdbcType=DECIMAL}, #{industryDigitalRank,jdbcType=INTEGER},
#{totalRank,jdbcType=INTEGER}, #{totalScore,jdbcType=DECIMAL})
</insert> </insert>
<insert id="insertSelective" parameterType="com.sztzjy.digital_credit.entity.StuUser"> <insert id="insertSelective" parameterType="com.sztzjy.digital_credit.entity.StuUser">
insert into stu_user insert into stu_user
@ -169,101 +161,86 @@
<if test="userId != null"> <if test="userId != null">
user_id, user_id,
</if> </if>
<if test="username != null"> <if test="studentId != null">
username, student_id,
</if>
<if test="password != null">
password,
</if> </if>
<if test="name != null"> <if test="name != null">
name, name,
</if> </if>
<if test="password != null">
password,
</if>
<if test="roleId != null"> <if test="roleId != null">
role_id, role_id,
</if> </if>
<if test="schoolId != null">
school_id,
</if>
<if test="schoolName != null">
school_name,
</if>
<if test="classId != null"> <if test="classId != null">
class_id, class_id,
</if> </if>
<if test="className != null"> <if test="className != null">
class_name, class_name,
</if> </if>
<if test="phone != null">
phone,
</if>
<if test="collegeId != null">
college_id,
</if>
<if test="collegeName != null">
college_name,
</if>
<if test="studentId != null">
student_id,
</if>
<if test="major != null"> <if test="major != null">
major, major,
</if> </if>
<if test="majorId != null"> <if test="schoolId != null">
major_id, school_id,
</if>
<if test="schoolName != null">
school_name,
</if> </if>
<if test="majorName != null"> <if test="hashFunctionScore != null">
major_name, hash_function_score,
</if> </if>
<if test="fiveScore != null"> <if test="blockchainScore != null">
five_score, blockchain_score,
</if> </if>
<if test="artificialIntelligenceScore != null"> <if test="dataLayerScore != null">
artificial_intelligence_score, data_layer_score,
</if> </if>
<if test="bigDataScore != null"> <if test="networkLayerScore != null">
big_data_score, network_layer_score,
</if> </if>
<if test="cloudComputeScore != null"> <if test="consensusLayerSocre != null">
cloud_compute_score, consensus_layer_socre,
</if> </if>
<if test="internetOfThingsSocre != null"> <if test="excitingLayerSocre != null">
internet_of_things_socre, exciting_layer_socre,
</if> </if>
<if test="virtualRealitySocre != null"> <if test="contractLayerSocre != null">
virtual_reality_socre, contract_layer_socre,
</if> </if>
<if test="industrialInternetSocre != null"> <if test="conceptScore != null">
industrial_internet_socre, concept_score,
</if> </if>
<if test="digitalIndustryScore != null"> <if test="conceptRank != null">
digital_industry_score, concept_rank,
</if> </if>
<if test="digitalIndustryRank != null"> <if test="technologySocre != null">
digital_industry_rank, technology_socre,
</if> </if>
<if test="digitalGoverSocre != null"> <if test="technologyRank != null">
digital_gover_socre, technology_rank,
</if> </if>
<if test="digitalGoverRank != null"> <if test="digitalCurrencyScore != null">
digital_gover_rank, digital_currency_score,
</if> </if>
<if test="digitalTradeScore != null"> <if test="digitalCurrencyRank != null">
digital_trade_score, digital_currency_rank,
</if> </if>
<if test="digitalFinanceScore != null"> <if test="invoiceScore != null">
digital_finance_score, invoice_score,
</if> </if>
<if test="valueDataScore != null"> <if test="supplyChainFinanceScore != null">
value_data_score, supply_chain_finance_score,
</if> </if>
<if test="valueDataRank != null"> <if test="traceabilityAndAntiCounterfeitingScore != null">
value_data_rank, traceability_and_anti_counterfeiting_score,
</if> </if>
<if test="industryDigitalScore != null"> <if test="ticketResultsScore != null">
industry_digital_score, ticket_results_score,
</if> </if>
<if test="industryDigitalRank != null"> <if test="crossBorderPaymentResultsScore != null">
industry_digital_rank, cross_border_payment_results_score,
</if> </if>
<if test="totalRank != null"> <if test="totalRank != null">
total_rank, total_rank,
@ -276,23 +253,17 @@
<if test="userId != null"> <if test="userId != null">
#{userId,jdbcType=VARCHAR}, #{userId,jdbcType=VARCHAR},
</if> </if>
<if test="username != null"> <if test="studentId != null">
#{username,jdbcType=VARCHAR}, #{studentId,jdbcType=VARCHAR},
</if>
<if test="password != null">
#{password,jdbcType=VARCHAR},
</if> </if>
<if test="name != null"> <if test="name != null">
#{name,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
</if> </if>
<if test="roleId != null"> <if test="password != null">
#{roleId,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR},
</if>
<if test="schoolId != null">
#{schoolId,jdbcType=VARCHAR},
</if> </if>
<if test="schoolName != null"> <if test="roleId != null">
#{schoolName,jdbcType=VARCHAR}, #{roleId,jdbcType=INTEGER},
</if> </if>
<if test="classId != null"> <if test="classId != null">
#{classId,jdbcType=VARCHAR}, #{classId,jdbcType=VARCHAR},
@ -300,77 +271,68 @@
<if test="className != null"> <if test="className != null">
#{className,jdbcType=VARCHAR}, #{className,jdbcType=VARCHAR},
</if> </if>
<if test="phone != null">
#{phone,jdbcType=VARCHAR},
</if>
<if test="collegeId != null">
#{collegeId,jdbcType=VARCHAR},
</if>
<if test="collegeName != null">
#{collegeName,jdbcType=VARCHAR},
</if>
<if test="studentId != null">
#{studentId,jdbcType=VARCHAR},
</if>
<if test="major != null"> <if test="major != null">
#{major,jdbcType=VARCHAR}, #{major,jdbcType=VARCHAR},
</if> </if>
<if test="majorId != null"> <if test="schoolId != null">
#{majorId,jdbcType=VARCHAR}, #{schoolId,jdbcType=VARCHAR},
</if> </if>
<if test="majorName != null"> <if test="schoolName != null">
#{majorName,jdbcType=VARCHAR}, #{schoolName,jdbcType=VARCHAR},
</if> </if>
<if test="fiveScore != null"> <if test="hashFunctionScore != null">
#{fiveScore,jdbcType=DECIMAL}, #{hashFunctionScore,jdbcType=DECIMAL},
</if> </if>
<if test="artificialIntelligenceScore != null"> <if test="blockchainScore != null">
#{artificialIntelligenceScore,jdbcType=DECIMAL}, #{blockchainScore,jdbcType=DECIMAL},
</if> </if>
<if test="bigDataScore != null"> <if test="dataLayerScore != null">
#{bigDataScore,jdbcType=DECIMAL}, #{dataLayerScore,jdbcType=DECIMAL},
</if> </if>
<if test="cloudComputeScore != null"> <if test="networkLayerScore != null">
#{cloudComputeScore,jdbcType=DECIMAL}, #{networkLayerScore,jdbcType=DECIMAL},
</if> </if>
<if test="internetOfThingsSocre != null"> <if test="consensusLayerSocre != null">
#{internetOfThingsSocre,jdbcType=DECIMAL}, #{consensusLayerSocre,jdbcType=DECIMAL},
</if> </if>
<if test="virtualRealitySocre != null"> <if test="excitingLayerSocre != null">
#{virtualRealitySocre,jdbcType=DECIMAL}, #{excitingLayerSocre,jdbcType=DECIMAL},
</if> </if>
<if test="industrialInternetSocre != null"> <if test="contractLayerSocre != null">
#{industrialInternetSocre,jdbcType=DECIMAL}, #{contractLayerSocre,jdbcType=DECIMAL},
</if> </if>
<if test="digitalIndustryScore != null"> <if test="conceptScore != null">
#{digitalIndustryScore,jdbcType=DECIMAL}, #{conceptScore,jdbcType=DECIMAL},
</if> </if>
<if test="digitalIndustryRank != null"> <if test="conceptRank != null">
#{digitalIndustryRank,jdbcType=INTEGER}, #{conceptRank,jdbcType=INTEGER},
</if> </if>
<if test="digitalGoverSocre != null"> <if test="technologySocre != null">
#{digitalGoverSocre,jdbcType=DECIMAL}, #{technologySocre,jdbcType=DECIMAL},
</if> </if>
<if test="digitalGoverRank != null"> <if test="technologyRank != null">
#{digitalGoverRank,jdbcType=INTEGER}, #{technologyRank,jdbcType=INTEGER},
</if> </if>
<if test="digitalTradeScore != null"> <if test="digitalCurrencyScore != null">
#{digitalTradeScore,jdbcType=DECIMAL}, #{digitalCurrencyScore,jdbcType=DECIMAL},
</if> </if>
<if test="digitalFinanceScore != null"> <if test="digitalCurrencyRank != null">
#{digitalFinanceScore,jdbcType=DECIMAL}, #{digitalCurrencyRank,jdbcType=INTEGER},
</if> </if>
<if test="valueDataScore != null"> <if test="invoiceScore != null">
#{valueDataScore,jdbcType=DECIMAL}, #{invoiceScore,jdbcType=DECIMAL},
</if> </if>
<if test="valueDataRank != null"> <if test="supplyChainFinanceScore != null">
#{valueDataRank,jdbcType=INTEGER}, #{supplyChainFinanceScore,jdbcType=DECIMAL},
</if> </if>
<if test="industryDigitalScore != null"> <if test="traceabilityAndAntiCounterfeitingScore != null">
#{industryDigitalScore,jdbcType=DECIMAL}, #{traceabilityAndAntiCounterfeitingScore,jdbcType=DECIMAL},
</if> </if>
<if test="industryDigitalRank != null"> <if test="ticketResultsScore != null">
#{industryDigitalRank,jdbcType=INTEGER}, #{ticketResultsScore,jdbcType=DECIMAL},
</if>
<if test="crossBorderPaymentResultsScore != null">
#{crossBorderPaymentResultsScore,jdbcType=DECIMAL},
</if> </if>
<if test="totalRank != null"> <if test="totalRank != null">
#{totalRank,jdbcType=INTEGER}, #{totalRank,jdbcType=INTEGER},
@ -392,23 +354,17 @@
<if test="record.userId != null"> <if test="record.userId != null">
user_id = #{record.userId,jdbcType=VARCHAR}, user_id = #{record.userId,jdbcType=VARCHAR},
</if> </if>
<if test="record.username != null"> <if test="record.studentId != null">
username = #{record.username,jdbcType=VARCHAR}, student_id = #{record.studentId,jdbcType=VARCHAR},
</if>
<if test="record.password != null">
password = #{record.password,jdbcType=VARCHAR},
</if> </if>
<if test="record.name != null"> <if test="record.name != null">
name = #{record.name,jdbcType=VARCHAR}, name = #{record.name,jdbcType=VARCHAR},
</if> </if>
<if test="record.roleId != null"> <if test="record.password != null">
role_id = #{record.roleId,jdbcType=VARCHAR}, password = #{record.password,jdbcType=VARCHAR},
</if>
<if test="record.schoolId != null">
school_id = #{record.schoolId,jdbcType=VARCHAR},
</if> </if>
<if test="record.schoolName != null"> <if test="record.roleId != null">
school_name = #{record.schoolName,jdbcType=VARCHAR}, role_id = #{record.roleId,jdbcType=INTEGER},
</if> </if>
<if test="record.classId != null"> <if test="record.classId != null">
class_id = #{record.classId,jdbcType=VARCHAR}, class_id = #{record.classId,jdbcType=VARCHAR},
@ -416,77 +372,68 @@
<if test="record.className != null"> <if test="record.className != null">
class_name = #{record.className,jdbcType=VARCHAR}, class_name = #{record.className,jdbcType=VARCHAR},
</if> </if>
<if test="record.phone != null">
phone = #{record.phone,jdbcType=VARCHAR},
</if>
<if test="record.collegeId != null">
college_id = #{record.collegeId,jdbcType=VARCHAR},
</if>
<if test="record.collegeName != null">
college_name = #{record.collegeName,jdbcType=VARCHAR},
</if>
<if test="record.studentId != null">
student_id = #{record.studentId,jdbcType=VARCHAR},
</if>
<if test="record.major != null"> <if test="record.major != null">
major = #{record.major,jdbcType=VARCHAR}, major = #{record.major,jdbcType=VARCHAR},
</if> </if>
<if test="record.majorId != null"> <if test="record.schoolId != null">
major_id = #{record.majorId,jdbcType=VARCHAR}, school_id = #{record.schoolId,jdbcType=VARCHAR},
</if>
<if test="record.schoolName != null">
school_name = #{record.schoolName,jdbcType=VARCHAR},
</if> </if>
<if test="record.majorName != null"> <if test="record.hashFunctionScore != null">
major_name = #{record.majorName,jdbcType=VARCHAR}, hash_function_score = #{record.hashFunctionScore,jdbcType=DECIMAL},
</if> </if>
<if test="record.fiveScore != null"> <if test="record.blockchainScore != null">
five_score = #{record.fiveScore,jdbcType=DECIMAL}, blockchain_score = #{record.blockchainScore,jdbcType=DECIMAL},
</if> </if>
<if test="record.artificialIntelligenceScore != null"> <if test="record.dataLayerScore != null">
artificial_intelligence_score = #{record.artificialIntelligenceScore,jdbcType=DECIMAL}, data_layer_score = #{record.dataLayerScore,jdbcType=DECIMAL},
</if> </if>
<if test="record.bigDataScore != null"> <if test="record.networkLayerScore != null">
big_data_score = #{record.bigDataScore,jdbcType=DECIMAL}, network_layer_score = #{record.networkLayerScore,jdbcType=DECIMAL},
</if> </if>
<if test="record.cloudComputeScore != null"> <if test="record.consensusLayerSocre != null">
cloud_compute_score = #{record.cloudComputeScore,jdbcType=DECIMAL}, consensus_layer_socre = #{record.consensusLayerSocre,jdbcType=DECIMAL},
</if> </if>
<if test="record.internetOfThingsSocre != null"> <if test="record.excitingLayerSocre != null">
internet_of_things_socre = #{record.internetOfThingsSocre,jdbcType=DECIMAL}, exciting_layer_socre = #{record.excitingLayerSocre,jdbcType=DECIMAL},
</if> </if>
<if test="record.virtualRealitySocre != null"> <if test="record.contractLayerSocre != null">
virtual_reality_socre = #{record.virtualRealitySocre,jdbcType=DECIMAL}, contract_layer_socre = #{record.contractLayerSocre,jdbcType=DECIMAL},
</if> </if>
<if test="record.industrialInternetSocre != null"> <if test="record.conceptScore != null">
industrial_internet_socre = #{record.industrialInternetSocre,jdbcType=DECIMAL}, concept_score = #{record.conceptScore,jdbcType=DECIMAL},
</if> </if>
<if test="record.digitalIndustryScore != null"> <if test="record.conceptRank != null">
digital_industry_score = #{record.digitalIndustryScore,jdbcType=DECIMAL}, concept_rank = #{record.conceptRank,jdbcType=INTEGER},
</if> </if>
<if test="record.digitalIndustryRank != null"> <if test="record.technologySocre != null">
digital_industry_rank = #{record.digitalIndustryRank,jdbcType=INTEGER}, technology_socre = #{record.technologySocre,jdbcType=DECIMAL},
</if> </if>
<if test="record.digitalGoverSocre != null"> <if test="record.technologyRank != null">
digital_gover_socre = #{record.digitalGoverSocre,jdbcType=DECIMAL}, technology_rank = #{record.technologyRank,jdbcType=INTEGER},
</if> </if>
<if test="record.digitalGoverRank != null"> <if test="record.digitalCurrencyScore != null">
digital_gover_rank = #{record.digitalGoverRank,jdbcType=INTEGER}, digital_currency_score = #{record.digitalCurrencyScore,jdbcType=DECIMAL},
</if> </if>
<if test="record.digitalTradeScore != null"> <if test="record.digitalCurrencyRank != null">
digital_trade_score = #{record.digitalTradeScore,jdbcType=DECIMAL}, digital_currency_rank = #{record.digitalCurrencyRank,jdbcType=INTEGER},
</if> </if>
<if test="record.digitalFinanceScore != null"> <if test="record.invoiceScore != null">
digital_finance_score = #{record.digitalFinanceScore,jdbcType=DECIMAL}, invoice_score = #{record.invoiceScore,jdbcType=DECIMAL},
</if> </if>
<if test="record.valueDataScore != null"> <if test="record.supplyChainFinanceScore != null">
value_data_score = #{record.valueDataScore,jdbcType=DECIMAL}, supply_chain_finance_score = #{record.supplyChainFinanceScore,jdbcType=DECIMAL},
</if> </if>
<if test="record.valueDataRank != null"> <if test="record.traceabilityAndAntiCounterfeitingScore != null">
value_data_rank = #{record.valueDataRank,jdbcType=INTEGER}, traceability_and_anti_counterfeiting_score = #{record.traceabilityAndAntiCounterfeitingScore,jdbcType=DECIMAL},
</if> </if>
<if test="record.industryDigitalScore != null"> <if test="record.ticketResultsScore != null">
industry_digital_score = #{record.industryDigitalScore,jdbcType=DECIMAL}, ticket_results_score = #{record.ticketResultsScore,jdbcType=DECIMAL},
</if> </if>
<if test="record.industryDigitalRank != null"> <if test="record.crossBorderPaymentResultsScore != null">
industry_digital_rank = #{record.industryDigitalRank,jdbcType=INTEGER}, cross_border_payment_results_score = #{record.crossBorderPaymentResultsScore,jdbcType=DECIMAL},
</if> </if>
<if test="record.totalRank != null"> <if test="record.totalRank != null">
total_rank = #{record.totalRank,jdbcType=INTEGER}, total_rank = #{record.totalRank,jdbcType=INTEGER},
@ -502,38 +449,33 @@
<update id="updateByExample" parameterType="map"> <update id="updateByExample" parameterType="map">
update stu_user update stu_user
set user_id = #{record.userId,jdbcType=VARCHAR}, set user_id = #{record.userId,jdbcType=VARCHAR},
username = #{record.username,jdbcType=VARCHAR}, student_id = #{record.studentId,jdbcType=VARCHAR},
password = #{record.password,jdbcType=VARCHAR},
name = #{record.name,jdbcType=VARCHAR}, name = #{record.name,jdbcType=VARCHAR},
role_id = #{record.roleId,jdbcType=VARCHAR}, password = #{record.password,jdbcType=VARCHAR},
school_id = #{record.schoolId,jdbcType=VARCHAR}, role_id = #{record.roleId,jdbcType=INTEGER},
school_name = #{record.schoolName,jdbcType=VARCHAR},
class_id = #{record.classId,jdbcType=VARCHAR}, class_id = #{record.classId,jdbcType=VARCHAR},
class_name = #{record.className,jdbcType=VARCHAR}, class_name = #{record.className,jdbcType=VARCHAR},
phone = #{record.phone,jdbcType=VARCHAR},
college_id = #{record.collegeId,jdbcType=VARCHAR},
college_name = #{record.collegeName,jdbcType=VARCHAR},
student_id = #{record.studentId,jdbcType=VARCHAR},
major = #{record.major,jdbcType=VARCHAR}, major = #{record.major,jdbcType=VARCHAR},
major_id = #{record.majorId,jdbcType=VARCHAR}, school_id = #{record.schoolId,jdbcType=VARCHAR},
major_name = #{record.majorName,jdbcType=VARCHAR}, school_name = #{record.schoolName,jdbcType=VARCHAR},
five_score = #{record.fiveScore,jdbcType=DECIMAL}, hash_function_score = #{record.hashFunctionScore,jdbcType=DECIMAL},
artificial_intelligence_score = #{record.artificialIntelligenceScore,jdbcType=DECIMAL}, blockchain_score = #{record.blockchainScore,jdbcType=DECIMAL},
big_data_score = #{record.bigDataScore,jdbcType=DECIMAL}, data_layer_score = #{record.dataLayerScore,jdbcType=DECIMAL},
cloud_compute_score = #{record.cloudComputeScore,jdbcType=DECIMAL}, network_layer_score = #{record.networkLayerScore,jdbcType=DECIMAL},
internet_of_things_socre = #{record.internetOfThingsSocre,jdbcType=DECIMAL}, consensus_layer_socre = #{record.consensusLayerSocre,jdbcType=DECIMAL},
virtual_reality_socre = #{record.virtualRealitySocre,jdbcType=DECIMAL}, exciting_layer_socre = #{record.excitingLayerSocre,jdbcType=DECIMAL},
industrial_internet_socre = #{record.industrialInternetSocre,jdbcType=DECIMAL}, contract_layer_socre = #{record.contractLayerSocre,jdbcType=DECIMAL},
digital_industry_score = #{record.digitalIndustryScore,jdbcType=DECIMAL}, concept_score = #{record.conceptScore,jdbcType=DECIMAL},
digital_industry_rank = #{record.digitalIndustryRank,jdbcType=INTEGER}, concept_rank = #{record.conceptRank,jdbcType=INTEGER},
digital_gover_socre = #{record.digitalGoverSocre,jdbcType=DECIMAL}, technology_socre = #{record.technologySocre,jdbcType=DECIMAL},
digital_gover_rank = #{record.digitalGoverRank,jdbcType=INTEGER}, technology_rank = #{record.technologyRank,jdbcType=INTEGER},
digital_trade_score = #{record.digitalTradeScore,jdbcType=DECIMAL}, digital_currency_score = #{record.digitalCurrencyScore,jdbcType=DECIMAL},
digital_finance_score = #{record.digitalFinanceScore,jdbcType=DECIMAL}, digital_currency_rank = #{record.digitalCurrencyRank,jdbcType=INTEGER},
value_data_score = #{record.valueDataScore,jdbcType=DECIMAL}, invoice_score = #{record.invoiceScore,jdbcType=DECIMAL},
value_data_rank = #{record.valueDataRank,jdbcType=INTEGER}, supply_chain_finance_score = #{record.supplyChainFinanceScore,jdbcType=DECIMAL},
industry_digital_score = #{record.industryDigitalScore,jdbcType=DECIMAL}, traceability_and_anti_counterfeiting_score = #{record.traceabilityAndAntiCounterfeitingScore,jdbcType=DECIMAL},
industry_digital_rank = #{record.industryDigitalRank,jdbcType=INTEGER}, ticket_results_score = #{record.ticketResultsScore,jdbcType=DECIMAL},
cross_border_payment_results_score = #{record.crossBorderPaymentResultsScore,jdbcType=DECIMAL},
total_rank = #{record.totalRank,jdbcType=INTEGER}, total_rank = #{record.totalRank,jdbcType=INTEGER},
total_score = #{record.totalScore,jdbcType=DECIMAL} total_score = #{record.totalScore,jdbcType=DECIMAL}
<if test="_parameter != null"> <if test="_parameter != null">
@ -543,23 +485,17 @@
<update id="updateByPrimaryKeySelective" parameterType="com.sztzjy.digital_credit.entity.StuUser"> <update id="updateByPrimaryKeySelective" parameterType="com.sztzjy.digital_credit.entity.StuUser">
update stu_user update stu_user
<set> <set>
<if test="username != null"> <if test="studentId != null">
username = #{username,jdbcType=VARCHAR}, student_id = #{studentId,jdbcType=VARCHAR},
</if>
<if test="password != null">
password = #{password,jdbcType=VARCHAR},
</if> </if>
<if test="name != null"> <if test="name != null">
name = #{name,jdbcType=VARCHAR}, name = #{name,jdbcType=VARCHAR},
</if> </if>
<if test="roleId != null"> <if test="password != null">
role_id = #{roleId,jdbcType=VARCHAR}, password = #{password,jdbcType=VARCHAR},
</if>
<if test="schoolId != null">
school_id = #{schoolId,jdbcType=VARCHAR},
</if> </if>
<if test="schoolName != null"> <if test="roleId != null">
school_name = #{schoolName,jdbcType=VARCHAR}, role_id = #{roleId,jdbcType=INTEGER},
</if> </if>
<if test="classId != null"> <if test="classId != null">
class_id = #{classId,jdbcType=VARCHAR}, class_id = #{classId,jdbcType=VARCHAR},
@ -567,77 +503,68 @@
<if test="className != null"> <if test="className != null">
class_name = #{className,jdbcType=VARCHAR}, class_name = #{className,jdbcType=VARCHAR},
</if> </if>
<if test="phone != null">
phone = #{phone,jdbcType=VARCHAR},
</if>
<if test="collegeId != null">
college_id = #{collegeId,jdbcType=VARCHAR},
</if>
<if test="collegeName != null">
college_name = #{collegeName,jdbcType=VARCHAR},
</if>
<if test="studentId != null">
student_id = #{studentId,jdbcType=VARCHAR},
</if>
<if test="major != null"> <if test="major != null">
major = #{major,jdbcType=VARCHAR}, major = #{major,jdbcType=VARCHAR},
</if> </if>
<if test="majorId != null"> <if test="schoolId != null">
major_id = #{majorId,jdbcType=VARCHAR}, school_id = #{schoolId,jdbcType=VARCHAR},
</if>
<if test="schoolName != null">
school_name = #{schoolName,jdbcType=VARCHAR},
</if> </if>
<if test="majorName != null"> <if test="hashFunctionScore != null">
major_name = #{majorName,jdbcType=VARCHAR}, hash_function_score = #{hashFunctionScore,jdbcType=DECIMAL},
</if> </if>
<if test="fiveScore != null"> <if test="blockchainScore != null">
five_score = #{fiveScore,jdbcType=DECIMAL}, blockchain_score = #{blockchainScore,jdbcType=DECIMAL},
</if> </if>
<if test="artificialIntelligenceScore != null"> <if test="dataLayerScore != null">
artificial_intelligence_score = #{artificialIntelligenceScore,jdbcType=DECIMAL}, data_layer_score = #{dataLayerScore,jdbcType=DECIMAL},
</if> </if>
<if test="bigDataScore != null"> <if test="networkLayerScore != null">
big_data_score = #{bigDataScore,jdbcType=DECIMAL}, network_layer_score = #{networkLayerScore,jdbcType=DECIMAL},
</if> </if>
<if test="cloudComputeScore != null"> <if test="consensusLayerSocre != null">
cloud_compute_score = #{cloudComputeScore,jdbcType=DECIMAL}, consensus_layer_socre = #{consensusLayerSocre,jdbcType=DECIMAL},
</if> </if>
<if test="internetOfThingsSocre != null"> <if test="excitingLayerSocre != null">
internet_of_things_socre = #{internetOfThingsSocre,jdbcType=DECIMAL}, exciting_layer_socre = #{excitingLayerSocre,jdbcType=DECIMAL},
</if> </if>
<if test="virtualRealitySocre != null"> <if test="contractLayerSocre != null">
virtual_reality_socre = #{virtualRealitySocre,jdbcType=DECIMAL}, contract_layer_socre = #{contractLayerSocre,jdbcType=DECIMAL},
</if> </if>
<if test="industrialInternetSocre != null"> <if test="conceptScore != null">
industrial_internet_socre = #{industrialInternetSocre,jdbcType=DECIMAL}, concept_score = #{conceptScore,jdbcType=DECIMAL},
</if> </if>
<if test="digitalIndustryScore != null"> <if test="conceptRank != null">
digital_industry_score = #{digitalIndustryScore,jdbcType=DECIMAL}, concept_rank = #{conceptRank,jdbcType=INTEGER},
</if> </if>
<if test="digitalIndustryRank != null"> <if test="technologySocre != null">
digital_industry_rank = #{digitalIndustryRank,jdbcType=INTEGER}, technology_socre = #{technologySocre,jdbcType=DECIMAL},
</if> </if>
<if test="digitalGoverSocre != null"> <if test="technologyRank != null">
digital_gover_socre = #{digitalGoverSocre,jdbcType=DECIMAL}, technology_rank = #{technologyRank,jdbcType=INTEGER},
</if> </if>
<if test="digitalGoverRank != null"> <if test="digitalCurrencyScore != null">
digital_gover_rank = #{digitalGoverRank,jdbcType=INTEGER}, digital_currency_score = #{digitalCurrencyScore,jdbcType=DECIMAL},
</if> </if>
<if test="digitalTradeScore != null"> <if test="digitalCurrencyRank != null">
digital_trade_score = #{digitalTradeScore,jdbcType=DECIMAL}, digital_currency_rank = #{digitalCurrencyRank,jdbcType=INTEGER},
</if> </if>
<if test="digitalFinanceScore != null"> <if test="invoiceScore != null">
digital_finance_score = #{digitalFinanceScore,jdbcType=DECIMAL}, invoice_score = #{invoiceScore,jdbcType=DECIMAL},
</if> </if>
<if test="valueDataScore != null"> <if test="supplyChainFinanceScore != null">
value_data_score = #{valueDataScore,jdbcType=DECIMAL}, supply_chain_finance_score = #{supplyChainFinanceScore,jdbcType=DECIMAL},
</if> </if>
<if test="valueDataRank != null"> <if test="traceabilityAndAntiCounterfeitingScore != null">
value_data_rank = #{valueDataRank,jdbcType=INTEGER}, traceability_and_anti_counterfeiting_score = #{traceabilityAndAntiCounterfeitingScore,jdbcType=DECIMAL},
</if> </if>
<if test="industryDigitalScore != null"> <if test="ticketResultsScore != null">
industry_digital_score = #{industryDigitalScore,jdbcType=DECIMAL}, ticket_results_score = #{ticketResultsScore,jdbcType=DECIMAL},
</if> </if>
<if test="industryDigitalRank != null"> <if test="crossBorderPaymentResultsScore != null">
industry_digital_rank = #{industryDigitalRank,jdbcType=INTEGER}, cross_border_payment_results_score = #{crossBorderPaymentResultsScore,jdbcType=DECIMAL},
</if> </if>
<if test="totalRank != null"> <if test="totalRank != null">
total_rank = #{totalRank,jdbcType=INTEGER}, total_rank = #{totalRank,jdbcType=INTEGER},
@ -650,41 +577,35 @@
</update> </update>
<update id="updateByPrimaryKey" parameterType="com.sztzjy.digital_credit.entity.StuUser"> <update id="updateByPrimaryKey" parameterType="com.sztzjy.digital_credit.entity.StuUser">
update stu_user update stu_user
set username = #{username,jdbcType=VARCHAR}, set student_id = #{studentId,jdbcType=VARCHAR},
password = #{password,jdbcType=VARCHAR},
name = #{name,jdbcType=VARCHAR}, name = #{name,jdbcType=VARCHAR},
role_id = #{roleId,jdbcType=VARCHAR}, password = #{password,jdbcType=VARCHAR},
school_id = #{schoolId,jdbcType=VARCHAR}, role_id = #{roleId,jdbcType=INTEGER},
school_name = #{schoolName,jdbcType=VARCHAR},
class_id = #{classId,jdbcType=VARCHAR}, class_id = #{classId,jdbcType=VARCHAR},
class_name = #{className,jdbcType=VARCHAR}, class_name = #{className,jdbcType=VARCHAR},
phone = #{phone,jdbcType=VARCHAR},
college_id = #{collegeId,jdbcType=VARCHAR},
college_name = #{collegeName,jdbcType=VARCHAR},
student_id = #{studentId,jdbcType=VARCHAR},
major = #{major,jdbcType=VARCHAR}, major = #{major,jdbcType=VARCHAR},
major_id = #{majorId,jdbcType=VARCHAR}, school_id = #{schoolId,jdbcType=VARCHAR},
major_name = #{majorName,jdbcType=VARCHAR}, school_name = #{schoolName,jdbcType=VARCHAR},
five_score = #{fiveScore,jdbcType=DECIMAL}, hash_function_score = #{hashFunctionScore,jdbcType=DECIMAL},
artificial_intelligence_score = #{artificialIntelligenceScore,jdbcType=DECIMAL}, blockchain_score = #{blockchainScore,jdbcType=DECIMAL},
big_data_score = #{bigDataScore,jdbcType=DECIMAL}, data_layer_score = #{dataLayerScore,jdbcType=DECIMAL},
cloud_compute_score = #{cloudComputeScore,jdbcType=DECIMAL}, network_layer_score = #{networkLayerScore,jdbcType=DECIMAL},
internet_of_things_socre = #{internetOfThingsSocre,jdbcType=DECIMAL}, consensus_layer_socre = #{consensusLayerSocre,jdbcType=DECIMAL},
virtual_reality_socre = #{virtualRealitySocre,jdbcType=DECIMAL}, exciting_layer_socre = #{excitingLayerSocre,jdbcType=DECIMAL},
industrial_internet_socre = #{industrialInternetSocre,jdbcType=DECIMAL}, contract_layer_socre = #{contractLayerSocre,jdbcType=DECIMAL},
digital_industry_score = #{digitalIndustryScore,jdbcType=DECIMAL}, concept_score = #{conceptScore,jdbcType=DECIMAL},
digital_industry_rank = #{digitalIndustryRank,jdbcType=INTEGER}, concept_rank = #{conceptRank,jdbcType=INTEGER},
digital_gover_socre = #{digitalGoverSocre,jdbcType=DECIMAL}, technology_socre = #{technologySocre,jdbcType=DECIMAL},
digital_gover_rank = #{digitalGoverRank,jdbcType=INTEGER}, technology_rank = #{technologyRank,jdbcType=INTEGER},
digital_trade_score = #{digitalTradeScore,jdbcType=DECIMAL}, digital_currency_score = #{digitalCurrencyScore,jdbcType=DECIMAL},
digital_finance_score = #{digitalFinanceScore,jdbcType=DECIMAL}, digital_currency_rank = #{digitalCurrencyRank,jdbcType=INTEGER},
value_data_score = #{valueDataScore,jdbcType=DECIMAL}, invoice_score = #{invoiceScore,jdbcType=DECIMAL},
value_data_rank = #{valueDataRank,jdbcType=INTEGER}, supply_chain_finance_score = #{supplyChainFinanceScore,jdbcType=DECIMAL},
industry_digital_score = #{industryDigitalScore,jdbcType=DECIMAL}, traceability_and_anti_counterfeiting_score = #{traceabilityAndAntiCounterfeitingScore,jdbcType=DECIMAL},
industry_digital_rank = #{industryDigitalRank,jdbcType=INTEGER}, ticket_results_score = #{ticketResultsScore,jdbcType=DECIMAL},
cross_border_payment_results_score = #{crossBorderPaymentResultsScore,jdbcType=DECIMAL},
total_rank = #{totalRank,jdbcType=INTEGER}, total_rank = #{totalRank,jdbcType=INTEGER},
total_score = #{totalScore,jdbcType=DECIMAL} total_score = #{totalScore,jdbcType=DECIMAL}
where user_id = #{userId,jdbcType=VARCHAR} where user_id = #{userId,jdbcType=VARCHAR}
</update> </update>
</mapper> </mapper>
Loading…
Cancel
Save