Browse Source

修改添加人员时候账户表加入机构id

hgw 3 years ago
parent
commit
195ab4d288

+ 1 - 1
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/SysUserCashAccount.java

@@ -57,7 +57,7 @@ public class SysUserCashAccount extends BaseEntity {
 
 	public SysUserCashAccount(Integer userId,Integer tenantId, String currency) {
 		this.userId = userId;
-		this.setTenantId(tenantId);
+        super.setTenantId(tenantId);
 		this.currency = currency;
 	}