CheckUnbindDao.java
596 Bytes
package com.cjs.cms.dao.user;
import org.springframework.stereotype.Repository;
import com.cjs.cms.util.db.OracleDao;
/**
* 查询用户有无资金变动历史(解绑银行卡使用)
* @author tongxiaochuan
*
*/
@Repository
public interface CheckUnbindDao extends OracleDao {
//查询资金流水表
int checkFundJour(String fund_account);
//查询证券资金流水表
int checkFundRealJour(String fund_account);
//查询历史资金流水表
int checkHisFundJour(String fund_account);
//查询历史证券资金流水表
int checkHisFundRealJour(String fund_account);
}