Files
ruoyi-java/ruoyi-system/src/main/java/com/ruoyi/erp/request/ERPAccount.java
2025-10-09 19:45:14 +08:00

32 lines
833 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ruoyi.erp.request;
import lombok.Getter;
/**
* @author Leo
* @version 1.0
* @create 2025/4/10 15:20
* @descriptionERP账户枚举类
*/
@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;
}
}