ganzi-api/inventory-dao/src/main/java/com/rzyc/enums/TaskCompleteState.java
2022-09-16 15:07:17 +08:00

42 lines
751 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.rzyc.enums;
/**
* 完成状态 1待完成 2:已完成
*/
public enum TaskCompleteState {
STAYCOMPLETE(1,""),
COMPLETE(2,"");
/**
* 状态
*/
private Integer state;
/**
* 状态描述
*/
private String completeState;
TaskCompleteState(Integer state, String completeState) {
this.state = state;
this.completeState = completeState;
}
public Integer getState() {
return state;
}
public void setState(Integer state) {
this.state = state;
}
public String getCompleteState() {
return completeState;
}
public void setCompleteState(String completeState) {
this.completeState = completeState;
}
}