新火炬后端单体项目初始化代码
Lius
8 天以前 9af27ed8da6b5710025fb080f96a7dd9e80467a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.jeecg.modules.mdc.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.mdc.entity.MdcDowntimeReason;
 
import java.util.List;
 
/**
 * @Description: 停机原因表
 * @Author: lius
 * @Date:   2025-03-11
 */
public interface IMdcDowntimeReasonService extends IService<MdcDowntimeReason> {
 
    List<MdcDowntimeReason> downtimeReasonList(String downtimeType);
}