package com.ruoyi.erp.request; import lombok.Getter; /** * @author Leo * @version 1.0 * @create 2025/4/10 15:20 * @description:ERP账户枚举类 */ @Getter public enum ERPAccount { // 胡歌1016208368633221 ACCOUNT_HUGE("1016208368633221", "waLiRMgFcixLbcLjUSSwo370Hp1nBcBu","余生请多关照66","海尔胡歌"), // 刘强东anotherApiKey ACCOUNT_LQD("1206879680251333", "HhJOQFdgqsrxn9m4Mz5V0AMtdUG6vTaT","tb8992720_2013","方案小号"); private final String apiKey; private final String apiKeySecret; private final String xyName; private final String remark; ERPAccount(String apiKey, String apiKeySecret, String xyName,String remark) { this.apiKey = apiKey; this.apiKeySecret = apiKeySecret; this.xyName = xyName; this.remark = remark; } }