InpIncomeService.java 301 B

1234567891011121314
  1. package com.fjs.scenic.service.system;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.fjs.scenic.entity.system.InpIncome;
  4. /**
  5. * (InpIncome)表服务接口
  6. *
  7. * @author lfj
  8. * @since 2021-09-30 15:16:29
  9. */
  10. public interface InpIncomeService extends IService<InpIncome> {
  11. }