package cc.mrbird.febs.mall.controller.dependentStation.enums; import lombok.Getter; @Getter public enum SalesServiceEnums { // 发货人 WHATSAPP("SALES_SERVICE", "WHATSAPP"), PHONE("SALES_SERVICE", "PHONE"), EMAIL("SALES_SERVICE", "EMAIL"); private String type; private String code; SalesServiceEnums(String type, String code) { this.type = type; this.code = code; } }