2025-09-26 13:35:45 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace VOL.YSErp.Models
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
"ys": {
|
|
|
|
|
"api_url": "https://c4.yonyoucloud.com",
|
|
|
|
|
"app_key": "99355863c0ed4363b09f8511d48f67e4",
|
|
|
|
|
"app_secret": "3ca452060b684ccc982836cd5f0b6116811cb8ce"
|
|
|
|
|
},
|
|
|
|
|
*/
|
|
|
|
|
public class YSConfig
|
|
|
|
|
{
|
|
|
|
|
public string ApiUrl = "https://c4.yonyoucloud.com"; // 正式环境 -> c4, 测试环境 -> c1
|
2025-10-09 15:46:16 +08:00
|
|
|
|
public string Appkey = "6fe5b0b6163e45c081cc9a40848d5840";
|
|
|
|
|
public string AppSecret = "ceeca798e84268a2d59f97c860e4c1223bf786df";
|
2025-09-26 13:35:45 +08:00
|
|
|
|
}
|
|
|
|
|
}
|