Results 4 comments of chenchen

I mean when stepping through the code with objectbox version 3.2.0 and 3.2.1。 long __assignedId = collect313311(cursor, entity.id, PUT_FLAG_COMPLETE, __id8, checkout_date_time, 0, null, 0, null, 0, null, __ID_type, entity.type, __ID_operate_type,...

my entity class ```java @Entity public class Log { @Id public long id; public int type; public String date_time; public String content; public String operator; public int operate_type; // 1-入库,2-出库...

that is the code: ```kotlin GlobalScope.launch(Dispatchers.IO) { try { val dateTime = TimeUtils.millis2String(DateTimeManager.timestamp) val log = Log(logType, dateTime, logContent, operator.name) log.operate_type = operateType val persons = arrayListOf() persons.add(operator) val personList...