mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
20 lines
377 B
Java
20 lines
377 B
Java
package cn.hellohao.dao;
|
|
|
|
import cn.hellohao.pojo.AppClient;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* @author Hellohao
|
|
* @version 1.0
|
|
* @date 2022-06-10 18:33
|
|
*/
|
|
|
|
@Mapper
|
|
public interface AppClientMapper {
|
|
AppClient getAppClientData(@Param("id") String id);
|
|
|
|
Integer editAppClientData(AppClient appClient);
|
|
|
|
}
|