baotian
2024-06-04 b959135a1139fb66646523d92e5bd20c5910f283
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
namespace iWare.Wms.Application
{
    /// <summary>
    /// 验证码输出参数
    /// </summary>
    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;
    }
 
    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; }
    }
}