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

2 months ago
2 months ago
2 months ago
  1. package com.example.demo.service.cash;
  2. import com.example.demo.domain.vo.cash.CashCollection;
  3. import com.example.demo.domain.vo.cash.CashRecordDone;
  4. import com.github.pagehelper.PageInfo;
  5. /**
  6. * @program: GOLD
  7. * @ClassName RefundService
  8. * @description:
  9. * @author: huangqizhen
  10. * @create: 202509-26 14:17
  11. * @Version 1.0
  12. **/
  13. public interface RefundService {
  14. PageInfo<CashCollection> select(Integer pageNum, Integer pageSize, CashRecordDone cashRecordDone);
  15. int add(CashRecordDone cashRecordDone);
  16. int update(CashRecordDone cashRecordDone);
  17. }