1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.dg.core.service;
|
| import com.dg.core.db.gen.entity.AutomessageCommonProblem;
|
| import java.util.List;
|
| public interface IAutomessageCommonProblemService {
|
| /**
| * 获取常见问题列表(不分页)
| * @return
| */
| List<AutomessageCommonProblem> selectList();
| }
|
|