PreventDetectionService.java 299 B

12345678910111213141516
  1. package com.huimv.cattle.service;
  2. import com.huimv.cattle.pojo.PreventDetection;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. /**
  5. * <p>
  6. * 服务类
  7. * </p>
  8. *
  9. * @author zn
  10. * @since 2022-12-14
  11. */
  12. public interface PreventDetectionService extends IService<PreventDetection> {
  13. }