songhuangfeng123
2022-07-06 421ad17ed07f8a4201e9ad4d2a1072f0fbe10524
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.gkhy.safePlatform.goalManage.service;
 
import com.gkhy.safePlatform.commons.vo.ResultVO;
import com.gkhy.safePlatform.goalManage.entity.TestTable;
 
public interface DemoService {
 
    String getUserDescInfo(String name,String email);
 
    ResultVO<TestTable> getById(Long id);
 
    ResultVO<TestTable> saveOne(String title);
 
}