JDBC 同步器 问题修改

1、UserInfo中无UserName属性,修改映射为username
2、缺少同步日志,添加日志
3、前端UI Form表单,删除id添加 name 文本框
This commit is contained in:
leron_xx
2023-10-12 17:02:22 +08:00
parent 171db28595
commit 229e7cc36b
4 changed files with 412 additions and 363 deletions

View File

@@ -2,10 +2,10 @@
<div>
<form nz-form [formGroup]="formGroup" (ngSubmit)="onSubmit($event)" se-container="1">
<nz-form-item>
<nz-form-label [nzMd]="6" nzFor="id">{{ 'mxk.text.id' | i18n }}</nz-form-label>
<nz-form-label [nzMd]="6" nzFor="name">{{ 'mxk.synchronizers.name' | i18n }}</nz-form-label>
<nz-form-control [nzMd]="18" nzErrorTip="The input is not valid id!">
<input [(ngModel)]="form.model.id" disabled="{{ isEdit }}" [ngModelOptions]="{ standalone: true }" nz-input
name="id" id="id" />
<input [(ngModel)]="form.model.name" [ngModelOptions]="{ standalone: true }" nz-input
name="name" id="name" />
</nz-form-control>
</nz-form-item>
<nz-form-item>
@@ -195,4 +195,4 @@
<div *nzModalFooter>
<button nz-button nzType="default" (click)="onClose($event)">{{ 'mxk.text.close' | i18n }}</button>
<button nz-button nzType="primary" (click)="onSubmit($event)">{{ 'mxk.text.submit' | i18n }}</button>
</div>
</div>