Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyu137 committed Feb 27, 2023
1 parent cd624a6 commit d75f07e
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,15 @@

package org.dromara.hmily.repository.spi.entity;

import lombok.Data;

import java.io.Serializable;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.CopyOnWriteArrayList;
import lombok.Data;

/**
* The HmilyTransaction.
Expand Down Expand Up @@ -78,13 +81,19 @@ public class HmilyTransaction implements Serializable {
*/
private List<HmilyParticipant> hmilyParticipants;

/**
* ext map.
*/
private Map<String, Object> paramMap = new ConcurrentHashMap<>();

/**
* Instantiates a new Hmily transaction.
*/
public HmilyTransaction() {
this.createTime = new Date();
this.updateTime = new Date();
hmilyParticipants = new CopyOnWriteArrayList<>();

}

/**
Expand Down

0 comments on commit d75f07e

Please sign in to comment.