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
434 B

  1. package com.example.demo.mapper.cash;
  2. import com.example.demo.domain.entity.CashRecord;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import org.apache.ibatis.annotations.Param;
  5. /**
  6. * @program: gold-java
  7. * @ClassName cashAuditMapper
  8. * @description:
  9. * @author: Ethan
  10. * @create: 202510-08 15:02
  11. * @Version 1.0
  12. **/
  13. @Mapper
  14. public interface CashAuditMapper {
  15. //更新订单
  16. void updateOrder (CashRecord updateOrder);
  17. }