修复com.kingdee.util.StringUtils找不到问题-龚宇杰

This commit is contained in:
ggxl 2025-04-17 22:27:39 +08:00
parent eaf0f35379
commit 27ddcd823f
1 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,5 @@
package zf47.jdgz1.fi.em.plugin.form;
import com.kingdee.util.StringUtils;
import kd.bos.bill.AbstractBillPlugIn;
import kd.bos.cache.ThreadCache;
import kd.bos.dataentity.entity.DynamicObject;
@ -119,7 +118,7 @@ public class TripPersonCohabitPlugin extends AbstractBillPlugIn implements Plugi
String genderI = travelerI.getString("gender");
String genderJ = travelerJ.getString("gender");
if (!genderI.equals("0") && StringUtils.equals(genderI, genderJ)) {
if (!genderI.equals("0") && genderI.equals(genderJ)) {
cohabitPersons.put(travelerI.getLong("id"), travelerJ.getLong("id"));
cohabitPersons.put(travelerJ.getLong("id"), travelerI.getLong("id"));