ISheet1Service.java 294 B

12345678910111213141516
  1. package com.huimv.farm.damsubsidy.service;
  2. import com.huimv.farm.damsubsidy.entity.Sheet1;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. /**
  5. * <p>
  6. * 服务类
  7. * </p>
  8. *
  9. * @author author
  10. * @since 2023-05-06
  11. */
  12. public interface ISheet1Service extends IService<Sheet1> {
  13. }