mirror of
https://github.com/gkd-kit/gkd.git
synced 2024-11-15 19:22:26 +08:00
feat(selector): 使用双引号序列化
This commit is contained in:
parent
c17554509a
commit
b53e385a9f
|
@ -9,7 +9,7 @@ data class BinaryExpression(val name: String, val operator: CompareOperator, val
|
|||
|
||||
override fun toString() = "${name}${operator}${
|
||||
if (value is String) {
|
||||
val wrapChar = '\''
|
||||
val wrapChar = '"'
|
||||
val sb = StringBuilder()
|
||||
sb.append(wrapChar)
|
||||
value.forEach { c ->
|
||||
|
|
Loading…
Reference in New Issue
Block a user