成绩管理和教师端
parent
f733b89558
commit
89004333bf
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,44 @@
|
||||
package com.sztzjy.bank.entity.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author tz
|
||||
* @date 2025/3/19 9:13
|
||||
*/
|
||||
@Data
|
||||
public class PaymentAcceptanceDTO {
|
||||
@ApiModelProperty(notes = "收款行代码")
|
||||
private String receivingBankCode;
|
||||
|
||||
@ApiModelProperty(notes = "收费方式")
|
||||
private String chargingMethod;
|
||||
|
||||
@ApiModelProperty(notes = "我行代码")
|
||||
private String writeCode;
|
||||
|
||||
@ApiModelProperty(notes = "电报费类型")
|
||||
private String telegramFeeType;
|
||||
|
||||
@ApiModelProperty(notes = "承兑币种")
|
||||
private String acceptanceCurrency;
|
||||
|
||||
@ApiModelProperty(notes = "承兑金额")
|
||||
private String acceptanceAmount;
|
||||
|
||||
@ApiModelProperty(notes = "受益人")
|
||||
private String beneficiary;
|
||||
|
||||
@ApiModelProperty(notes = "受益人结算账号")
|
||||
private String benSettlementAccount;
|
||||
|
||||
@ApiModelProperty(notes = "付款人结算账号")
|
||||
private String payerSettlementAccount;
|
||||
|
||||
@ApiModelProperty(notes = "付款人名称")
|
||||
private String payerName;
|
||||
|
||||
@ApiModelProperty(notes = "扣费账号")
|
||||
private String deductionAccount;
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
package com.sztzjy.bank.entity.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* @author tz
|
||||
* @date 2025/3/18 10:36
|
||||
*/
|
||||
@Data
|
||||
public class TchProjectAnalysisDTO {
|
||||
@ApiModelProperty(notes = "业务名称")
|
||||
private String businessName;
|
||||
|
||||
@ApiModelProperty(notes = "平均练习进度")
|
||||
private double practiceProgress;
|
||||
|
||||
@ApiModelProperty(notes = "平均练习时长")
|
||||
private double practiceDuration;
|
||||
|
||||
@ApiModelProperty(notes = "平均练习成绩")
|
||||
private BigDecimal practiceResults;
|
||||
|
||||
@ApiModelProperty(notes = "平均错误次数")
|
||||
private double AverageErrorsNumber;
|
||||
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package com.sztzjy.bank.mapper;
|
||||
|
||||
import com.sztzjy.bank.entity.PaymentAcceptance;
|
||||
import com.sztzjy.bank.entity.PaymentAcceptanceExample;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface PaymentAcceptanceMapper {
|
||||
long countByExample(PaymentAcceptanceExample example);
|
||||
|
||||
int deleteByExample(PaymentAcceptanceExample example);
|
||||
|
||||
int deleteByPrimaryKey(String id);
|
||||
|
||||
int insert(PaymentAcceptance record);
|
||||
|
||||
int insertSelective(PaymentAcceptance record);
|
||||
|
||||
List<PaymentAcceptance> selectByExample(PaymentAcceptanceExample example);
|
||||
|
||||
PaymentAcceptance selectByPrimaryKey(String id);
|
||||
|
||||
int updateByExampleSelective(@Param("record") PaymentAcceptance record, @Param("example") PaymentAcceptanceExample example);
|
||||
|
||||
int updateByExample(@Param("record") PaymentAcceptance record, @Param("example") PaymentAcceptanceExample example);
|
||||
|
||||
int updateByPrimaryKeySelective(PaymentAcceptance record);
|
||||
|
||||
int updateByPrimaryKey(PaymentAcceptance record);
|
||||
}
|
@ -0,0 +1,434 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.sztzjy.bank.mapper.PaymentAcceptanceMapper">
|
||||
<resultMap id="BaseResultMap" type="com.sztzjy.bank.entity.PaymentAcceptance">
|
||||
<id column="id" jdbcType="VARCHAR" property="id" />
|
||||
<result column="receiving_bank_code" jdbcType="VARCHAR" property="receivingBankCode" />
|
||||
<result column="charging_method" jdbcType="VARCHAR" property="chargingMethod" />
|
||||
<result column="write_code" jdbcType="VARCHAR" property="writeCode" />
|
||||
<result column="telegram_fee_type" jdbcType="VARCHAR" property="telegramFeeType" />
|
||||
<result column="acceptance_currency" jdbcType="VARCHAR" property="acceptanceCurrency" />
|
||||
<result column="acceptance_amount" jdbcType="VARCHAR" property="acceptanceAmount" />
|
||||
<result column="beneficiary" jdbcType="VARCHAR" property="beneficiary" />
|
||||
<result column="ben_settlement_account" jdbcType="VARCHAR" property="benSettlementAccount" />
|
||||
<result column="payer_settlement_account" jdbcType="VARCHAR" property="payerSettlementAccount" />
|
||||
<result column="payer_name" jdbcType="VARCHAR" property="payerName" />
|
||||
<result column="deduction_account" jdbcType="VARCHAR" property="deductionAccount" />
|
||||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
<result column="save_status" jdbcType="INTEGER" property="saveStatus" />
|
||||
<result column="submit_status" jdbcType="INTEGER" property="submitStatus" />
|
||||
<result column="user_id" jdbcType="VARCHAR" property="userId" />
|
||||
<result column="error_number" jdbcType="INTEGER" property="errorNumber" />
|
||||
<result column="number" jdbcType="INTEGER" property="number" />
|
||||
</resultMap>
|
||||
<sql id="Example_Where_Clause">
|
||||
<where>
|
||||
<foreach collection="oredCriteria" item="criteria" separator="or">
|
||||
<if test="criteria.valid">
|
||||
<trim prefix="(" prefixOverrides="and" suffix=")">
|
||||
<foreach collection="criteria.criteria" item="criterion">
|
||||
<choose>
|
||||
<when test="criterion.noValue">
|
||||
and ${criterion.condition}
|
||||
</when>
|
||||
<when test="criterion.singleValue">
|
||||
and ${criterion.condition} #{criterion.value}
|
||||
</when>
|
||||
<when test="criterion.betweenValue">
|
||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||
</when>
|
||||
<when test="criterion.listValue">
|
||||
and ${criterion.condition}
|
||||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
||||
#{listItem}
|
||||
</foreach>
|
||||
</when>
|
||||
</choose>
|
||||
</foreach>
|
||||
</trim>
|
||||
</if>
|
||||
</foreach>
|
||||
</where>
|
||||
</sql>
|
||||
<sql id="Update_By_Example_Where_Clause">
|
||||
<where>
|
||||
<foreach collection="example.oredCriteria" item="criteria" separator="or">
|
||||
<if test="criteria.valid">
|
||||
<trim prefix="(" prefixOverrides="and" suffix=")">
|
||||
<foreach collection="criteria.criteria" item="criterion">
|
||||
<choose>
|
||||
<when test="criterion.noValue">
|
||||
and ${criterion.condition}
|
||||
</when>
|
||||
<when test="criterion.singleValue">
|
||||
and ${criterion.condition} #{criterion.value}
|
||||
</when>
|
||||
<when test="criterion.betweenValue">
|
||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||
</when>
|
||||
<when test="criterion.listValue">
|
||||
and ${criterion.condition}
|
||||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
||||
#{listItem}
|
||||
</foreach>
|
||||
</when>
|
||||
</choose>
|
||||
</foreach>
|
||||
</trim>
|
||||
</if>
|
||||
</foreach>
|
||||
</where>
|
||||
</sql>
|
||||
<sql id="Base_Column_List">
|
||||
id, receiving_bank_code, charging_method, write_code, telegram_fee_type, acceptance_currency,
|
||||
acceptance_amount, beneficiary, ben_settlement_account, payer_settlement_account,
|
||||
payer_name, deduction_account, create_time, update_time, save_status, submit_status,
|
||||
user_id, error_number, number
|
||||
</sql>
|
||||
<select id="selectByExample" parameterType="com.sztzjy.bank.entity.PaymentAcceptanceExample" resultMap="BaseResultMap">
|
||||
select
|
||||
<if test="distinct">
|
||||
distinct
|
||||
</if>
|
||||
<include refid="Base_Column_List" />
|
||||
from payment_acceptance
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
<if test="orderByClause != null">
|
||||
order by ${orderByClause}
|
||||
</if>
|
||||
</select>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from payment_acceptance
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</select>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
||||
delete from payment_acceptance
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</delete>
|
||||
<delete id="deleteByExample" parameterType="com.sztzjy.bank.entity.PaymentAcceptanceExample">
|
||||
delete from payment_acceptance
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
</delete>
|
||||
<insert id="insert" parameterType="com.sztzjy.bank.entity.PaymentAcceptance">
|
||||
insert into payment_acceptance (id, receiving_bank_code, charging_method,
|
||||
write_code, telegram_fee_type, acceptance_currency,
|
||||
acceptance_amount, beneficiary, ben_settlement_account,
|
||||
payer_settlement_account, payer_name, deduction_account,
|
||||
create_time, update_time, save_status,
|
||||
submit_status, user_id, error_number,
|
||||
number)
|
||||
values (#{id,jdbcType=VARCHAR}, #{receivingBankCode,jdbcType=VARCHAR}, #{chargingMethod,jdbcType=VARCHAR},
|
||||
#{writeCode,jdbcType=VARCHAR}, #{telegramFeeType,jdbcType=VARCHAR}, #{acceptanceCurrency,jdbcType=VARCHAR},
|
||||
#{acceptanceAmount,jdbcType=VARCHAR}, #{beneficiary,jdbcType=VARCHAR}, #{benSettlementAccount,jdbcType=VARCHAR},
|
||||
#{payerSettlementAccount,jdbcType=VARCHAR}, #{payerName,jdbcType=VARCHAR}, #{deductionAccount,jdbcType=VARCHAR},
|
||||
#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, #{saveStatus,jdbcType=INTEGER},
|
||||
#{submitStatus,jdbcType=INTEGER}, #{userId,jdbcType=VARCHAR}, #{errorNumber,jdbcType=INTEGER},
|
||||
#{number,jdbcType=INTEGER})
|
||||
</insert>
|
||||
<insert id="insertSelective" parameterType="com.sztzjy.bank.entity.PaymentAcceptance">
|
||||
insert into payment_acceptance
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">
|
||||
id,
|
||||
</if>
|
||||
<if test="receivingBankCode != null">
|
||||
receiving_bank_code,
|
||||
</if>
|
||||
<if test="chargingMethod != null">
|
||||
charging_method,
|
||||
</if>
|
||||
<if test="writeCode != null">
|
||||
write_code,
|
||||
</if>
|
||||
<if test="telegramFeeType != null">
|
||||
telegram_fee_type,
|
||||
</if>
|
||||
<if test="acceptanceCurrency != null">
|
||||
acceptance_currency,
|
||||
</if>
|
||||
<if test="acceptanceAmount != null">
|
||||
acceptance_amount,
|
||||
</if>
|
||||
<if test="beneficiary != null">
|
||||
beneficiary,
|
||||
</if>
|
||||
<if test="benSettlementAccount != null">
|
||||
ben_settlement_account,
|
||||
</if>
|
||||
<if test="payerSettlementAccount != null">
|
||||
payer_settlement_account,
|
||||
</if>
|
||||
<if test="payerName != null">
|
||||
payer_name,
|
||||
</if>
|
||||
<if test="deductionAccount != null">
|
||||
deduction_account,
|
||||
</if>
|
||||
<if test="createTime != null">
|
||||
create_time,
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
update_time,
|
||||
</if>
|
||||
<if test="saveStatus != null">
|
||||
save_status,
|
||||
</if>
|
||||
<if test="submitStatus != null">
|
||||
submit_status,
|
||||
</if>
|
||||
<if test="userId != null">
|
||||
user_id,
|
||||
</if>
|
||||
<if test="errorNumber != null">
|
||||
error_number,
|
||||
</if>
|
||||
<if test="number != null">
|
||||
number,
|
||||
</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">
|
||||
#{id,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="receivingBankCode != null">
|
||||
#{receivingBankCode,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="chargingMethod != null">
|
||||
#{chargingMethod,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="writeCode != null">
|
||||
#{writeCode,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="telegramFeeType != null">
|
||||
#{telegramFeeType,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="acceptanceCurrency != null">
|
||||
#{acceptanceCurrency,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="acceptanceAmount != null">
|
||||
#{acceptanceAmount,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="beneficiary != null">
|
||||
#{beneficiary,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="benSettlementAccount != null">
|
||||
#{benSettlementAccount,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="payerSettlementAccount != null">
|
||||
#{payerSettlementAccount,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="payerName != null">
|
||||
#{payerName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="deductionAccount != null">
|
||||
#{deductionAccount,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="createTime != null">
|
||||
#{createTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
#{updateTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="saveStatus != null">
|
||||
#{saveStatus,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="submitStatus != null">
|
||||
#{submitStatus,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="userId != null">
|
||||
#{userId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="errorNumber != null">
|
||||
#{errorNumber,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="number != null">
|
||||
#{number,jdbcType=INTEGER},
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
<select id="countByExample" parameterType="com.sztzjy.bank.entity.PaymentAcceptanceExample" resultType="java.lang.Long">
|
||||
select count(*) from payment_acceptance
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
</select>
|
||||
<update id="updateByExampleSelective" parameterType="map">
|
||||
update payment_acceptance
|
||||
<set>
|
||||
<if test="record.id != null">
|
||||
id = #{record.id,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.receivingBankCode != null">
|
||||
receiving_bank_code = #{record.receivingBankCode,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.chargingMethod != null">
|
||||
charging_method = #{record.chargingMethod,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.writeCode != null">
|
||||
write_code = #{record.writeCode,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.telegramFeeType != null">
|
||||
telegram_fee_type = #{record.telegramFeeType,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.acceptanceCurrency != null">
|
||||
acceptance_currency = #{record.acceptanceCurrency,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.acceptanceAmount != null">
|
||||
acceptance_amount = #{record.acceptanceAmount,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.beneficiary != null">
|
||||
beneficiary = #{record.beneficiary,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.benSettlementAccount != null">
|
||||
ben_settlement_account = #{record.benSettlementAccount,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.payerSettlementAccount != null">
|
||||
payer_settlement_account = #{record.payerSettlementAccount,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.payerName != null">
|
||||
payer_name = #{record.payerName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.deductionAccount != null">
|
||||
deduction_account = #{record.deductionAccount,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.createTime != null">
|
||||
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="record.updateTime != null">
|
||||
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="record.saveStatus != null">
|
||||
save_status = #{record.saveStatus,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="record.submitStatus != null">
|
||||
submit_status = #{record.submitStatus,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="record.userId != null">
|
||||
user_id = #{record.userId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.errorNumber != null">
|
||||
error_number = #{record.errorNumber,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="record.number != null">
|
||||
number = #{record.number,jdbcType=INTEGER},
|
||||
</if>
|
||||
</set>
|
||||
<if test="_parameter != null">
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByExample" parameterType="map">
|
||||
update payment_acceptance
|
||||
set id = #{record.id,jdbcType=VARCHAR},
|
||||
receiving_bank_code = #{record.receivingBankCode,jdbcType=VARCHAR},
|
||||
charging_method = #{record.chargingMethod,jdbcType=VARCHAR},
|
||||
write_code = #{record.writeCode,jdbcType=VARCHAR},
|
||||
telegram_fee_type = #{record.telegramFeeType,jdbcType=VARCHAR},
|
||||
acceptance_currency = #{record.acceptanceCurrency,jdbcType=VARCHAR},
|
||||
acceptance_amount = #{record.acceptanceAmount,jdbcType=VARCHAR},
|
||||
beneficiary = #{record.beneficiary,jdbcType=VARCHAR},
|
||||
ben_settlement_account = #{record.benSettlementAccount,jdbcType=VARCHAR},
|
||||
payer_settlement_account = #{record.payerSettlementAccount,jdbcType=VARCHAR},
|
||||
payer_name = #{record.payerName,jdbcType=VARCHAR},
|
||||
deduction_account = #{record.deductionAccount,jdbcType=VARCHAR},
|
||||
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
||||
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
||||
save_status = #{record.saveStatus,jdbcType=INTEGER},
|
||||
submit_status = #{record.submitStatus,jdbcType=INTEGER},
|
||||
user_id = #{record.userId,jdbcType=VARCHAR},
|
||||
error_number = #{record.errorNumber,jdbcType=INTEGER},
|
||||
number = #{record.number,jdbcType=INTEGER}
|
||||
<if test="_parameter != null">
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByPrimaryKeySelective" parameterType="com.sztzjy.bank.entity.PaymentAcceptance">
|
||||
update payment_acceptance
|
||||
<set>
|
||||
<if test="receivingBankCode != null">
|
||||
receiving_bank_code = #{receivingBankCode,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="chargingMethod != null">
|
||||
charging_method = #{chargingMethod,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="writeCode != null">
|
||||
write_code = #{writeCode,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="telegramFeeType != null">
|
||||
telegram_fee_type = #{telegramFeeType,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="acceptanceCurrency != null">
|
||||
acceptance_currency = #{acceptanceCurrency,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="acceptanceAmount != null">
|
||||
acceptance_amount = #{acceptanceAmount,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="beneficiary != null">
|
||||
beneficiary = #{beneficiary,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="benSettlementAccount != null">
|
||||
ben_settlement_account = #{benSettlementAccount,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="payerSettlementAccount != null">
|
||||
payer_settlement_account = #{payerSettlementAccount,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="payerName != null">
|
||||
payer_name = #{payerName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="deductionAccount != null">
|
||||
deduction_account = #{deductionAccount,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="createTime != null">
|
||||
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="saveStatus != null">
|
||||
save_status = #{saveStatus,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="submitStatus != null">
|
||||
submit_status = #{submitStatus,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="userId != null">
|
||||
user_id = #{userId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="errorNumber != null">
|
||||
error_number = #{errorNumber,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="number != null">
|
||||
number = #{number,jdbcType=INTEGER},
|
||||
</if>
|
||||
</set>
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</update>
|
||||
<update id="updateByPrimaryKey" parameterType="com.sztzjy.bank.entity.PaymentAcceptance">
|
||||
update payment_acceptance
|
||||
set receiving_bank_code = #{receivingBankCode,jdbcType=VARCHAR},
|
||||
charging_method = #{chargingMethod,jdbcType=VARCHAR},
|
||||
write_code = #{writeCode,jdbcType=VARCHAR},
|
||||
telegram_fee_type = #{telegramFeeType,jdbcType=VARCHAR},
|
||||
acceptance_currency = #{acceptanceCurrency,jdbcType=VARCHAR},
|
||||
acceptance_amount = #{acceptanceAmount,jdbcType=VARCHAR},
|
||||
beneficiary = #{beneficiary,jdbcType=VARCHAR},
|
||||
ben_settlement_account = #{benSettlementAccount,jdbcType=VARCHAR},
|
||||
payer_settlement_account = #{payerSettlementAccount,jdbcType=VARCHAR},
|
||||
payer_name = #{payerName,jdbcType=VARCHAR},
|
||||
deduction_account = #{deductionAccount,jdbcType=VARCHAR},
|
||||
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
||||
save_status = #{saveStatus,jdbcType=INTEGER},
|
||||
submit_status = #{submitStatus,jdbcType=INTEGER},
|
||||
user_id = #{userId,jdbcType=VARCHAR},
|
||||
error_number = #{errorNumber,jdbcType=INTEGER},
|
||||
number = #{number,jdbcType=INTEGER}
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</update>
|
||||
</mapper>
|
Loading…
Reference in New Issue