郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.gkhy.safePlatform.safeCheck.service.baseService;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.safePlatform.safeCheck.entity.SafeCheckQuotaType;
 
import java.util.List;
 
public interface SafeCheckQuotaTypeService extends IService<SafeCheckQuotaType> {
 
    /**
     * @description 获取所有未删除的巡检指标类型
     */
    List<SafeCheckQuotaType> listQuotaType(int deleteStatus);
 
    /**
     * @description 根据巡检指标类型id,获取指标类型名
     */
    String getNameByTypeId(int quotaTypeId);
 
    /**
     * @description TODO 由于先写死,就默认肯定存在对应的指标单位类型
     */
    int getTyIdByName(String quotaType);
}