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.

19 lines
397 B

  1. package com.example.demo.mapper.cash;
  2. import com.example.demo.domain.entity.CashRecord;
  3. import org.apache.ibatis.annotations.Mapper;
  4. /**
  5. * @program: gold-java
  6. * @ClassName CashCollectionMapper
  7. * @description:
  8. * @author: Ethan
  9. * @create: 202509-26 17:17
  10. * @Version 1.0
  11. **/
  12. @Mapper
  13. public interface CashCollectionMapper {
  14. //新增收款订单
  15. void add(CashRecord cashRecord);
  16. }