|
|
@@ -3,6 +3,7 @@ package cn.com.taiji.core.entity.comm; |
|
|
|
|
|
|
|
import cn.com.taiji.core.entity.AbstractStringPropertyUUIDEntity; |
|
|
|
import cn.com.taiji.core.entity.dict.EnableStatus; |
|
|
|
import cn.com.taiji.core.entity.dict.basic.SourceType; |
|
|
|
import cn.com.taiji.core.entity.dict.user.RbacSource; |
|
|
|
|
|
|
|
import javax.persistence.*; |
|
|
@@ -21,7 +22,7 @@ public class PortalConfig extends AbstractStringPropertyUUIDEntity { |
|
|
|
/** |
|
|
|
* 来源类型 |
|
|
|
*/ |
|
|
|
private RbacSource source; |
|
|
|
private SourceType source; |
|
|
|
|
|
|
|
/*** |
|
|
|
* 客车车牌颜色(字典) |
|
|
@@ -99,7 +100,7 @@ public class PortalConfig extends AbstractStringPropertyUUIDEntity { |
|
|
|
|
|
|
|
@Enumerated(EnumType.STRING) |
|
|
|
@Column(name = "SOURCE") |
|
|
|
public RbacSource getSource() { |
|
|
|
public SourceType getSource() { |
|
|
|
return source; |
|
|
|
} |
|
|
|
|
|
|
@@ -152,7 +153,7 @@ public class PortalConfig extends AbstractStringPropertyUUIDEntity { |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setSource(RbacSource source) { |
|
|
|
public void setSource(SourceType source) { |
|
|
|
this.source = source; |
|
|
|
} |
|
|
|
|