AppDao.java 411 B

123456789101112131415161718
  1. package com.llisoft.pay.dao;
  2. import org.apache.ibatis.annotations.Mapper;
  3. import org.apache.ibatis.annotations.Select;
  4. import com.llisoft.pay.entity.App;
  5. @Mapper
  6. @Deprecated
  7. public interface AppDao {
  8. @Select("select * from mta_pay_app where app_id=#{appId}")
  9. App select(String appId);
  10. @Select("select * from mta_pay_app where app_key=#{appKey}")
  11. App selectByAppKey(String appKey);
  12. }