mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
13 lines
258 B
Java
13 lines
258 B
Java
package cn.hellohao.service;
|
|
|
|
import cn.hellohao.pojo.AppClient;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public interface AppClientService {
|
|
|
|
AppClient getAppClientData( String id);
|
|
|
|
Integer editAppClientData(AppClient appClient);
|
|
}
|