核查系统api
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.

13 lines
353 B

  1. package com.iflytop.nuclear.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.iflytop.nuclear.model.NuclearStation;
  4. import org.springframework.transaction.annotation.Transactional;
  5. /**
  6. * @author cool
  7. * @date 2023/6/28 13:59
  8. */
  9. @Transactional
  10. public interface NuclearStationService extends IService<NuclearStation> {
  11. }