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
13 lines
353 B
package com.iflytop.nuclear.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.iflytop.nuclear.model.NuclearStation;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
/**
|
|
* @author cool
|
|
* @date 2023/6/28 13:59
|
|
*/
|
|
@Transactional
|
|
public interface NuclearStationService extends IService<NuclearStation> {
|
|
}
|