0818 新增码表 git拉取代码

目的是新增两个码表字段。然后和前端联调。

use db;
delete from sys_dict_data where dict_type = 'res_switch_status';
INSERT INTO `sys_dict_data` VALUES (0, 1, '已接入', '1', 'res_switch_status', NULL, 'default', 'N', '0', '', '2022-07-26 10:43:41', '', NULL, NULL);
INSERT INTO `sys_dict_data` VALUES (0, 2, '已断流', '0', 'res_switch_status', NULL, 'default', 'N', '0', '', '2022-07-26 10:44:06', '', NULL, NULL);

delete from sys_dict_type where dict_type = 'res_switch_status';
INSERT INTO `sys_dict_type`(`dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES ('设备接入状态', 'res_switch_status', '0', 'admin', '2022-07-29 15:57:01', 'sjh', '2022-07-29 16:01:18', NULL);

git拉取代码遇到问题

更新一下自己的账号密码和邮箱
然后必须要执行这句才可以生效。
git commit --amend --reset-author --no-edit

$ git config --global user.name 用户名
$ git config --global user.name freedom
$ git config --global user.password 密码
$ git config --global user.password abc0506abc
$ git config --global user.email 邮箱
$ git config --global user.email "[email protected]"

你可能感兴趣的:(java)