Blame view

netcore/src/Infrastructure/NCC.Pay/Alipay.AopSdk.Core/SignItem.cs 304 Bytes
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  namespace Alipay.AopSdk.Core
  {
  	public class SignItem
  	{
  		public string SignSourceDate { get; set; }
  		public string Sign { get; set; }
  
  		public override string ToString()
  		{
  			return "{" + //
  			       "Sign:" + Sign + //
  			       ",SignSourceDate:" + SignSourceDate + //
  			       "}";
  		}
  	}
  }