You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
546 B
17 lines
546 B
package com.example.demo.Dao;
|
|
|
|
import com.example.demo.bean.Repayment;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Select;
|
|
import org.apache.ibatis.annotations.Update;
|
|
|
|
@Mapper
|
|
public interface paymentMapper {
|
|
@Select("select * from repayment where checkNum =#{checkNum}")
|
|
public Repayment selectPepaymentBycheckNum(long checkNum);
|
|
|
|
@Update("update repayment set repAmount = {#repAmount} ,repSum = {#repSum} where checkNum = #{checkNum}")
|
|
public void updateRepayment(Repayment repayment);
|
|
|
|
}
|