AccountsStrategy

This commit is contained in:
MaxKey
2021-11-16 11:48:08 +08:00
parent 29b5181adf
commit 633247aca1
24 changed files with 370 additions and 95 deletions

View File

@@ -42,17 +42,20 @@ public class AccountsStrategy extends JpaBaseEntity implements Serializable {
private String name;
@Column
private String appId;
private byte[] appIcon;
@Column
private String appName;
@Column
private String mapping;
@Column
String filters ;
@Column
String orgIdsList;
@Column
String suffixes;
@Column
String createType;
@Column
String status;
@Column
String description;
@@ -173,7 +176,31 @@ public class AccountsStrategy extends JpaBaseEntity implements Serializable {
this.mapping = mapping;
}
@Override
public byte[] getAppIcon() {
return appIcon;
}
public void setAppIcon(byte[] appIcon) {
this.appIcon = appIcon;
}
public String getCreateType() {
return createType;
}
public void setCreateType(String createType) {
this.createType = createType;
}
public String getSuffixes() {
return suffixes;
}
public void setSuffixes(String suffixes) {
this.suffixes = suffixes;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append("AccountsStrategy [id=");

View File

@@ -140,9 +140,6 @@ public class Apps extends JpaBaseEntity implements Serializable {
@Column
private String adapter;
@Column
protected int accountMgmt;
protected Accounts appUser;
@Column
@@ -586,14 +583,6 @@ public class Apps extends JpaBaseEntity implements Serializable {
this.adapterName = adapterName;
}
public int getAccountMgmt() {
return accountMgmt;
}
public void setAccountMgmt(int accountMgmt) {
this.accountMgmt = accountMgmt;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();