CostOtherPaymentsMapper.java 371 B

12345678910111213141516
  1. package com.imed.costaccount.mapper;
  2. import com.imed.costaccount.model.CostOtherPayments;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * 全院其他收支设置
  7. *
  8. * @author KCYG
  9. * @date 2021-08-09 17:53:22
  10. */
  11. @Mapper
  12. public interface CostOtherPaymentsMapper extends BaseMapper<CostOtherPayments> {
  13. }