package com.vincent.rsf.server.system.enums; /** * @author Ryan * @version 1.0 * @title CompanyType * @description * @create 2025/3/10 16:45 */ public enum CompanyType { //重置类型:年 COMPANY_TYPE_SUPPLIER("supplier", "供应商"), //重置类型:月 COMPANY_TYPE_SHIPPER("shipper", "货主"), //重置类型:日 COMPANY_TYPE_CUSTOMER("customer", "客户") ; public String type; public String desc; CompanyType(String type , String desc) { this.type = type; this.desc = desc; } }