Commit c15fd0ec by xiehongfei

fix: setMemberInfo 修正字段名

parent 28d83210
......@@ -96,7 +96,7 @@ public class EsMemberInfoUtils {
}
if (isQueryStore) {
String mainStoreId = jsonValue.getString("mainStoreId");
String mainStoreId = jsonValue.getString("storeId");
// ReflectUtils.setDateFieldValue(vo, "storeId", mainStoreId);
if (org.apache.commons.lang.StringUtils.isNotBlank(mainStoreId)) {
StoreDTO storeValue = storeMap.get(mainStoreId);
......@@ -112,7 +112,7 @@ public class EsMemberInfoUtils {
}
if (isQueryClerk) {
String mainClerkId = jsonValue.getString("mainClerkId");
String mainClerkId = jsonValue.getString("clerkId");
// ReflectUtils.setDateFieldValue(vo, "clerkId", mainClerkId);
if (org.apache.commons.lang.StringUtils.isNotBlank(mainClerkId)) {
ClerkDTO clerkDTO = clerkMap.get(mainClerkId);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment