|
|
@@ -2,13 +2,14 @@ package com.java110.user.smo.impl;
|
|
|
|
|
|
|
|
|
import com.java110.core.base.smo.BaseServiceSMO;
|
|
|
-import com.java110.intf.user.IOwnerAttrInnerServiceSMO;
|
|
|
import com.java110.dto.PageDto;
|
|
|
import com.java110.dto.owner.OwnerAttrDto;
|
|
|
import com.java110.dto.user.UserDto;
|
|
|
+import com.java110.intf.user.IOwnerAttrInnerServiceSMO;
|
|
|
import com.java110.intf.user.IUserInnerServiceSMO;
|
|
|
import com.java110.user.dao.IOwnerAttrServiceDao;
|
|
|
import com.java110.utils.util.BeanConvertUtil;
|
|
|
+import com.java110.utils.util.StringUtil;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
@@ -72,6 +73,10 @@ public class OwnerAttrInnerServiceSMOImpl extends BaseServiceSMO implements IOwn
|
|
|
BeanConvertUtil.covertBean(user, ownerAttr);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ if (StringUtil.isEmpty(ownerAttr.getValueName())) {
|
|
|
+ ownerAttr.setValueName(ownerAttr.getValue());
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|