6 lines
98 B
Java
6 lines
98 B
Java
package ru.kayashov.bar.model.entity;
|
|
|
|
public enum OrderStatus {
|
|
NEW, PROCESS, DONE, CANCEL
|
|
}
|