♻️ Refactor av data structure

This commit is contained in:
Daniel 2023-07-12 00:02:40 +08:00
parent fd3e1d66bd
commit 11a55903f2
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 44 additions and 33 deletions

View file

@ -237,13 +237,13 @@ func performTx(tx *Transaction) (ret *TxErr) {
ret = tx.doAddAttrViewColumn(op)
case "updateAttrViewCol":
ret = tx.doUpdateAttrViewColumn(op)
case "removeAttrViewCol":
ret = tx.doRemoveAttrViewColumn(op)
case "sortAttrViewRow":
ret = tx.doSortAttrViewRow(op)
case "sortAttrViewCol":
ret = tx.doSortAttrViewColumn(op)
// TODO 下面的方法要重写
case "removeAttrViewCol":
ret = tx.doRemoveAttrViewColumn(op)
case "updateAttrViewCell":
ret = tx.doUpdateAttrViewCell(op)
case "setAttrView":