提交基础采购
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.klp.erp.enums;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* 采购订单状态枚举
|
||||
*/
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum PurchaseOrderStatus {
|
||||
|
||||
DRAFT(0),
|
||||
EXECUTING(1),
|
||||
PARTIAL_ARRIVAL(2),
|
||||
COMPLETED(3),
|
||||
CANCELLED(4);
|
||||
|
||||
private final int code;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user