1
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package com.ruoyi.jarvis.service;
|
||||
|
||||
import com.ruoyi.jarvis.domain.ErpOpenConfig;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface IErpOpenConfigService {
|
||||
|
||||
ErpOpenConfig selectById(Long id);
|
||||
|
||||
ErpOpenConfig selectByAppKey(String appKey);
|
||||
|
||||
ErpOpenConfig selectFirstEnabled();
|
||||
|
||||
List<ErpOpenConfig> selectList(ErpOpenConfig query);
|
||||
|
||||
List<ErpOpenConfig> selectEnabledOrderBySort();
|
||||
|
||||
int insert(ErpOpenConfig row);
|
||||
|
||||
int update(ErpOpenConfig row);
|
||||
|
||||
int deleteById(Long id);
|
||||
}
|
||||
Reference in New Issue
Block a user