Skip to content

Commit

Permalink
fix: 修复默认初始化数据中企微关系管理数据字段映射错误的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
eryajf committed Apr 9, 2024
1 parent 792ec90 commit 5a7a803
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build:
go build -o go-ldap-admin main.go

build-linux:
CGO_ENABLED=0 GOARCH=amd64 GOOS=linux go build -o go-ldap-admin main.go
CGO_ENABLED=0 GOARCH=amd64 GOOS=linux go build -o go-ldap-admin main.go && upx -9 go-ldap-admin

build-linux-arm:
CGO_ENABLED=0 GOARCH=arm64 GOOS=linux go build -o go-ldap-admin main.go
Expand Down
2 changes: 1 addition & 1 deletion public/common/init_mysql_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ func InitData() {
},
{
Flag: "wecom_group",
Attributes: datatypes.JSON(`{"groupName":"custom_name_pinyin","remark":"name","sourceDeptId":"parentid","sourceDeptParentId":"id"}`),
Attributes: datatypes.JSON(`{"groupName":"custom_name_pinyin","remark":"name","sourceDeptId":"id","sourceDeptParentId":"parentid"}`),
},
{
Flag: "wecom_user",
Expand Down

0 comments on commit 5a7a803

Please sign in to comment.