解决代码冲突

This commit is contained in:
squallzhjch 2023-07-14 16:41:39 +08:00
parent 1be2b00bf2
commit eea7cb6fdf
4 changed files with 51 additions and 52 deletions

View File

@ -160,9 +160,10 @@ class TaskUploadScope(
val linkStatus = hadLinkDvoBean.linkStatus val linkStatus = hadLinkDvoBean.linkStatus
var s: String = "%.3f".format(hadLinkDvoBean.linkLength)//保留一位小数(且支持四舍五入) var s: String = "%.3f".format(hadLinkDvoBean.length)//保留一位小数(且支持四舍五入)
val objects = realm.where(QsRecordBean::class.java).equalTo("linkId", /*"84207223282277331"*/hadLinkDvoBean.linkPid).findAll() val objects = realm.where(QsRecordBean::class.java)
.equalTo("linkId", /*"84207223282277331"*/hadLinkDvoBean.linkPid).findAll()
if (objects != null && objects.size > 0) { if (objects != null && objects.size > 0) {
val copyList = realm.copyFromRealm(objects) val copyList = realm.copyFromRealm(objects)

View File

@ -364,7 +364,6 @@ class EvaluationResultViewModel @Inject constructor(
*/ */
fun initData(id: String) { fun initData(id: String) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
viewModelScope.launch(Dispatchers.IO) { viewModelScope.launch(Dispatchers.IO) {
@ -404,12 +403,10 @@ class EvaluationResultViewModel @Inject constructor(
} }
} }
} }
}
/** /**
* 查询问题类型列表 * 查询问题类型列表
*/ */
@RequiresApi(Build.VERSION_CODES.N)
fun getChatMsgEntityList() { fun getChatMsgEntityList() {
val chatMsgEntityList: MutableList<ChatMsgEntity> = ArrayList() val chatMsgEntityList: MutableList<ChatMsgEntity> = ArrayList()
liveDataQsRecordBean.value?.attachmentBeanList?.forEach { liveDataQsRecordBean.value?.attachmentBeanList?.forEach {

View File

@ -32,5 +32,9 @@ open class HadLinkDvoBean @JvmOverloads constructor(
/** /**
* 详细属性 * 详细属性
*/ */
var linkInfo: LinkInfoBean? = null var linkInfo: LinkInfoBean? = null,
/**
* 长度
*/
var length: Double = 0.000,
) : RealmObject() ) : RealmObject()

View File

@ -18,10 +18,7 @@ open class LinkInfoBean @JvmOverloads constructor(
* 数据的等级 * 数据的等级
*/ */
var dataLevel: Int = 0, var dataLevel: Int = 0,
/**
* 长度
*/
var length: Double = 0.000,
/** /**
* 备注信息 * 备注信息
*/ */