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.
19 lines
421 B
19 lines
421 B
3 years ago
|
using System;
|
||
|
|
||
|
namespace Jd.ACES.Common
|
||
|
{
|
||
|
public class JosSystemParam
|
||
|
{
|
||
|
//网关请求url
|
||
|
public string serverURL { get; set; }
|
||
|
//网关appkey
|
||
|
public string appKey { get; set; }
|
||
|
//网关appsecret
|
||
|
public string appSecret { get; set; }
|
||
|
//网关accessToken
|
||
|
public string accessToken { get; set; }
|
||
|
public JosSystemParam() {
|
||
|
}
|
||
|
}
|
||
|
}
|