EAS BOS 设置提交单据不引用编码规则

业务场景: 如果系统集成同步时,需要和对方系统保持编码一致,EAS在默认提交时会引用系统的编码规则,如果需要保存不引用系统规则,需要代码做以下调整;

PersonInfo otherSysPerson = new PersonInfo();

//不走编码规则
otherSysPerson.put("notNeedGenerateObjectNumber", true);

otherSysPerson.setOther(xxx)


猜你喜欢

转载自my.oschina.net/hipanda/blog/1800896