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.
20 lines
563 B
20 lines
563 B
package com.example.demo.service.cash;
|
|
|
|
import com.example.demo.domain.vo.cash.CashCollection;
|
|
import com.example.demo.domain.vo.cash.CashRecordDone;
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
/**
|
|
* @program: GOLD
|
|
* @ClassName RefundService
|
|
* @description:
|
|
* @author: huangqizhen
|
|
* @create: 2025−09-26 14:17
|
|
* @Version 1.0
|
|
**/
|
|
public interface RefundService {
|
|
PageInfo<CashCollection> select(Integer pageNum, Integer pageSize, CashRecordDone cashRecordDone);
|
|
int add(CashRecordDone cashRecordDone);
|
|
int update(CashRecordDone cashRecordDone);
|
|
|
|
}
|