|
|
|
@ -5,16 +5,10 @@ import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import javax.persistence.Inheritance;
|
|
|
|
|
import javax.persistence.InheritanceType;
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Version;
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -71,4 +65,7 @@ public class PtlControl extends BaseBean implements Serializable {
|
|
|
|
|
@ApiParam(value = "乐观锁", example = "1")
|
|
|
|
|
public transient Integer lockVersion;
|
|
|
|
|
|
|
|
|
|
@Column(name = "BACKOFF")
|
|
|
|
|
@ApiParam("是否需要回调")
|
|
|
|
|
private Integer backoff;
|
|
|
|
|
}
|
|
|
|
|