package com.consum.base.core.type; /** * 物品型号业务类型 * * @author asus * @version 2023/12/05 10:40 **/ public enum GoodsModelType { /** * 采购 */ PROCURE(1, "采购"), /** * 调拨 */ TRANSFER(2, "调拨"), /** * 出库 */ OUT_PUT(3, "出库"), /** * 部门分发 */ DEPARTMENT_DISTRIBUTION(4, "部门分发"); private Integer value; private String desc; GoodsModelType(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; } }