:art:完善部分新功能

This commit is contained in:
hello-hao
2022-06-24 17:30:55 +08:00
parent 133540874c
commit a71ca1c1e9
23 changed files with 697 additions and 268 deletions
@@ -0,0 +1,19 @@
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);
}