package com.consum.base.core.type;
|
|
/**
|
* 调拨业务类型
|
*
|
* @author asus
|
* @version 2023/12/08 09:50
|
**/
|
public enum TransferBusinessType {
|
|
/**
|
* 仓库调拨
|
*/
|
STOCK_TRANSFER(0, "仓库调拨"),
|
/**
|
* 部门分发
|
*/
|
DEPARTMENT_PROCURE(1, "部门分发");
|
|
private Integer value;
|
|
private String desc;
|
|
TransferBusinessType(Integer value, String desc) {
|
this.value = value;
|
this.desc = desc;
|
}
|
|
public Integer getValue() {
|
return value;
|
}
|
|
public void setValue(Integer value) {
|
this.value = value;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
}
|