03 2022 档案
摘要:使用Git将本地文件提交到远程仓库 现在要将本地代码推到git远程仓库保存,可以提交和拉取操作 本地项目已经创建 git远程仓库已经建(github、gitee都行) 操作如下: 1、(先进入项目文件夹)通过命令 git init 把这个目录变成git可以管理的仓库 git init 2、把文件添加
阅读全文
摘要:mybatis动态sql中批量指定更新的使用 @Mapper public interface StudentMapper extends BaseMapper<Student> { /** * 批量更新 * 根据id更新字段 */ void updateBatch(List<Student> li
阅读全文