|
|
@ -29,10 +29,7 @@ import com.baomidou.mybatisplus.core.conditions.Wrapper; |
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Constants; |
|
|
|
import org.apache.ibatis.annotations.Delete; |
|
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
|
import org.apache.ibatis.annotations.Param; |
|
|
|
import org.apache.ibatis.annotations.Select; |
|
|
|
import org.apache.ibatis.annotations.*; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
@ -59,8 +56,8 @@ public interface PmsSupplierBankMapper extends BaseMapper<PmsSupplierBank> { |
|
|
|
@Select("select * from yxt_base.base_supplier_bank") |
|
|
|
List<PmsSupplierBankVo> selectListVo(); |
|
|
|
|
|
|
|
@Delete("delete from yxt_base.base_supplier_bank where supplierSid = #{supplierSid}") |
|
|
|
int deleteBySupplierSid(String supplierSid); |
|
|
|
@Update("update yxt_base.base_supplier_bank set isDelete = '1' where supplierSid = #{supplierSid}") |
|
|
|
int updateBySupplierSid(String supplierSid); |
|
|
|
|
|
|
|
@Select("select * from yxt_base.base_supplier_bank where supplierSid = #{supplierSid}") |
|
|
|
List<PmsSupplierBankDetailsVo> selectBySupplierSid(String supplierSid); |
|
|
|