19 lines
402 B
Java
19 lines
402 B
Java
package net.srt.service;
|
|
|
|
import net.srt.entity.StandardEntity;
|
|
import net.srt.framework.common.utils.TreeNodeVo;
|
|
import net.srt.framework.mybatis.service.BaseService;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @ClassName : StandardService
|
|
* @Description :
|
|
* @Author : FJJ
|
|
* @Date: 2023-12-20 11:31
|
|
*/
|
|
public interface StandardService extends BaseService<StandardEntity> {
|
|
|
|
List<TreeNodeVo> listTree();
|
|
}
|