| | |
| | | package com.doumee.core.constants; |
| | | |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.Getter; |
| | | |
| | | import java.util.*; |
| | |
| | | } |
| | | |
| | | |
| | | |
| | | public enum workOrderStatus{ |
| | | waitConfirm( 0, "待分配WTS","待分配WTS",""), |
| | | waitAllocation(1, "待分配任务","待分配任务",""), |
| | |
| | | private String statusInfo; |
| | | private String logTitle; |
| | | private String noticeContent; |
| | | |
| | | public int getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(int status) { |
| | | this.status = status; |
| | | } |
| | | |
| | | public String getStatusInfo() { |
| | | return statusInfo; |
| | | } |
| | | |
| | | public void setStatusInfo(String statusInfo) { |
| | | this.statusInfo = statusInfo; |
| | | } |
| | | |
| | | public String getLogTitle() { |
| | | return logTitle; |
| | | } |
| | | |
| | | public void setLogTitle(String logTitle) { |
| | | this.logTitle = logTitle; |
| | | } |
| | | |
| | | public String getNoticeContent() { |
| | | return noticeContent; |
| | | } |
| | | |
| | | public void setNoticeContent(String noticeContent) { |
| | | this.noticeContent = noticeContent; |
| | | } |
| | | } |
| | | } |