mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
24 lines
522 B
C#
24 lines
522 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 = "UTF-8";
|
|
|
|
public static String SIGN_TYPE = "RSA2";
|
|
}
|
|
}
|