using Furion.DependencyInjection; using System.Collections.Generic; namespace Myshipping.Core; /// /// 验证码输出参数 /// [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 point { get; set; } = new List(); public string jigsawImageBase64 { get; set; } public List wordList { get; set; } = new List(); 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 { }