xiaoyong931011
2021-08-12 a5ffab1fcc28ad45a56e376722c162d23742848e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.matrix.system.hive.dao;
 
 
import com.matrix.system.hive.bean.MoneyCardUseFreeze;
 
public interface MoneyCardUseFreezeDao {
    MoneyCardUseFreeze selectById(Long id);
 
    int insert(MoneyCardUseFreeze record);
 
    int update(MoneyCardUseFreeze record);
 
    MoneyCardUseFreeze selectByMoneyCardUseId(Long cardUseId);
}