You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
544 B
29 lines
544 B
package com.hai.service;
|
|
|
|
import com.hai.entity.HighGoldRec;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @Auther: 胡锐
|
|
* @Description: 金币记录
|
|
* @Date: 2021/3/27 10:01
|
|
*/
|
|
public interface HighGoldRecService {
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 增加记录
|
|
* @Date 2021/3/27 10:02
|
|
**/
|
|
void insertGoldRec(HighGoldRec highGoldRec);
|
|
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 查询记录
|
|
* @Date 2021/3/27 10:03
|
|
**/
|
|
List<HighGoldRec> getGoldRec(Map<String, Object> map);
|
|
}
|
|
|