|
@@ -0,0 +1,20 @@
|
|
|
+package com.emato.cuspay.dao.mapper;
|
|
|
+
|
|
|
+
|
|
|
+import com.emato.cuspay.dao.data.MerchPayCfg;
|
|
|
+import org.apache.ibatis.annotations.Mapper;
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
+
|
|
|
+@Component
|
|
|
+public interface MerchPayCfgMapper {
|
|
|
+
|
|
|
+ int deleteByPrimaryKey(String payCfgSn);
|
|
|
+
|
|
|
+ int insertSelective(MerchPayCfg record);
|
|
|
+
|
|
|
+ MerchPayCfg selectByPrimaryKey(String payCfgSn);
|
|
|
+
|
|
|
+ int updateByPrimaryKeySelective(MerchPayCfg record);
|
|
|
+
|
|
|
+ MerchPayCfg selectByWxMercherSn(String merchSn);
|
|
|
+}
|