Browse Source

[fix] Command id type

3.0.3-release
Jay Chung 2 years ago
parent
commit
26ef7f82ea
  1. 6
      dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/Command.java

6
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/Command.java

@ -40,7 +40,7 @@ public class Command {
* id
*/
@TableId(value = "id", type = IdType.AUTO)
private int id;
private Integer id;
/**
* command type
@ -189,11 +189,11 @@ public class Command {
this.taskDependType = taskDependType;
}
public int getId() {
public Integer getId() {
return id;
}
public void setId(int id) {
public void setId(Integer id) {
this.id = id;
}

Loading…
Cancel
Save