public void doMutexService()
    {
        IMutexServiceControl mutex = MutexServiceControlFactory.getRemoteInstance();

        UserInfo user = null; // 请求锁有用户
        String billId = null; // 要锁定/解锁的单据Id

        // 请求锁定
        mutex.requestObjIDForUpdate(billId, user.getString("id"));

        // 解除锁
        mutex.releaseObjIDForUpdate(billId);
    }


Tree:TreeBase(增加parentid级次)
Data:DataBase、BillBase(增加关联关系,对Tree的引用)

相关文章:

  • 2022-12-23
  • 2021-12-05
  • 2021-09-18
  • 2021-12-21
  • 2022-12-23
  • 2022-01-21
  • 2021-12-21
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-15
  • 2022-12-23
  • 2021-07-16
  • 2022-12-23
相关资源
相似解决方案