mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-12 07:02:14 +08:00
24 lines
520 B
C#
24 lines
520 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SDKCSharp.Common
|
|
{
|
|
public class SdkConfig
|
|
{
|
|
public static String SUCCESS_CODE = "10000";
|
|
|
|
public static String DEFAULT_VERSION = "1.0";
|
|
|
|
public static String FORMAT_TYPE = "json";
|
|
|
|
public static String TIMESTAMP_PATTERN = "yyyy-MM-dd HH:mm:ss";
|
|
|
|
public static String CHARSET = "GBK";
|
|
|
|
public static String SIGN_TYPE = "RSA2";
|
|
}
|
|
}
|