1
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
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("anotherApiKey", "anotherApiSecret","刘强东","方案小号");
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user