You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Gdsi-Api/Gdsi/Config/GdsiConfig.cs

32 lines
1.2 KiB

2 years ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gdsi.Config
{
public class GdsiConfig
{
// 医保服务调用地址
1 year ago
public static string server_url = "http://igb.hsa.gdgov.cn/ebus/gdyb_api/prd/hsa/hgs/";//正式地址
//public static string server_url = "http://igb.hsa.gdgov.cn/ebus/gdyb_inf/poc/hsa/hgs/";//测试地址
2 years ago
// 医疗机构编码
1 year ago
public static string fixmedins_code = "H44051100034";//汕头市中医医院
2 years ago
// 医疗机构名称
1 year ago
public static string fixmedins_name = "汕头市中医医院";
2 years ago
// 经办人
1 year ago
public static string opter = "ATM001";
2 years ago
// 经办人姓名
1 year ago
public static string opter_name = "自助机新";
2 years ago
// 就医地医保区划
1 year ago
public static string city_code = "440500";
2 years ago
// 应用编码
1 year ago
public static string paasid = "st_prd_sjyy";
//public static string paasid = "st_yyce";测试
2 years ago
// 密钥
1 year ago
//public static string key = "VFnJJmfZGU0b91WVujwtwQtZksYfHUHK";//测试
public static string key = "u4SsHkkn8L2G7C1RBrslqUJVJXlkapFr";
2 years ago
}
}