123456789101112131415161718 |
- package com.llisoft.pay.dao;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Select;
- import com.llisoft.pay.entity.App;
- @Mapper
- @Deprecated
- public interface AppDao {
- @Select("select * from mta_pay_app where app_id=#{appId}")
- App select(String appId);
-
- @Select("select * from mta_pay_app where app_key=#{appKey}")
- App selectByAppKey(String appKey);
-
- }
|