You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
C#
44 lines
1.3 KiB
C#
using Furion.DependencyInjection;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Myshipping.Core;
|
|
|
|
/// <summary>
|
|
/// 验证码输出参数
|
|
/// </summary>
|
|
[SuppressSniffer]
|
|
public class ClickWordCaptchaResult
|
|
{
|
|
public string repCode { get; set; } = "0000";
|
|
public string repMsg { get; set; }
|
|
public RepData repData { get; set; } = new RepData();
|
|
public bool error { get; set; }
|
|
public bool success { get; set; } = true;
|
|
}
|
|
|
|
[SuppressSniffer]
|
|
public class RepData
|
|
{
|
|
public string captchaId { get; set; }
|
|
public string projectCode { get; set; }
|
|
public string captchaType { get; set; }
|
|
public string captchaOriginalPath { get; set; }
|
|
public string captchaFontType { get; set; }
|
|
public string captchaFontSize { get; set; }
|
|
public string secretKey { get; set; }
|
|
public string originalImageBase64 { get; set; }
|
|
public List<PointPosModel> point { get; set; } = new List<PointPosModel>();
|
|
public string jigsawImageBase64 { get; set; }
|
|
public List<string> wordList { get; set; } = new List<string>();
|
|
public string pointList { get; set; }
|
|
public string pointJson { get; set; }
|
|
public string token { get; set; }
|
|
public bool result { get; set; }
|
|
public string captchaVerification { get; set; }
|
|
}
|
|
|
|
[SuppressSniffer]
|
|
public class WordList
|
|
{
|
|
}
|