| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- /**
- * entity:GwSubProcess
- *
- * @author lune
- * @date 2020-1-8
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class GwSubProcess extends BaseBean implements Serializable {
- private String id;
- @ApiModelProperty("标识所属应用")
- private String app;
- @ApiModelProperty("当前等级,-1标识没有上一级")
- private String localState;
- @ApiModelProperty("上一等级")
- private String prvState;
- @ApiModelProperty("下一层级,-1标识没有下一级")
- private String nextState;
- public GwSubProcess() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getApp() {
- return app;
- }
- public void setApp(String app) {
- this.app = app;
- }
- public String getLocalState() {
- return localState;
- }
- public void setLocalState(String localState) {
- this.localState = localState;
- }
- public String getPrvState() {
- return prvState;
- }
- public void setPrvState(String prvState) {
- this.prvState = prvState;
- }
- public String getNextState() {
- return nextState;
- }
- public void setNextState(String nextState) {
- this.nextState = nextState;
- }
- @Override
- public String toString() {
- return "GwSubProcess [" + "id=" + id + ", app=" + app + ", localState=" + localState + ", prvState=" + prvState + ", nextState=" + nextState + "]";
- }
- }
|