1
0

手动指定表名

This commit is contained in:
2025-01-03 17:21:53 +08:00
parent 6d869ef915
commit f4e8896763
3 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ import org.springframework.data.jpa.domain.support.AuditingEntityListener;
@ToString
@Getter
@Setter
@Entity
@Entity(name = "flowable_history")
@DynamicUpdate
@EntityListeners(AuditingEntityListener.class)
public class FlowableHistory {

View File

@@ -33,7 +33,7 @@ import org.springframework.data.jpa.domain.support.AuditingEntityListener;
@ToString
@Getter
@Setter
@Entity
@Entity(name = "flowable_instance")
@DynamicUpdate
@EntityListeners(AuditingEntityListener.class)
public class FlowableInstance {

View File

@@ -31,7 +31,7 @@ import org.springframework.data.jpa.domain.support.AuditingEntityListener;
@ToString
@Getter
@Setter
@Entity
@Entity(name = "flowable_node")
@DynamicUpdate
@EntityListeners(AuditingEntityListener.class)
public class FlowableNode {