wuxw
2022-01-15 e3aed650aa4e232f4583a00fc3de088276a2188b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.java110.core.proxy;
 
/**
 * @ClassName ITestService
 * @Description TODO
 * @Author wuxw
 * @Date 2019/5/15 15:53
 * @Version 1.0
 * add by wuxw 2019/5/15
 **/
public interface ITestService {
 
    /**
     * 获取
     *
     * @param param 参数
     * @return 返回
     */
    String get(String param);
 
    void set(String param);
}