We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bca1a53 commit 6ca4c5eCopy full SHA for 6ca4c5e
1 file changed
src/Extensions/Components/BootstrapBlazor.BaiduOcr/Models/InvoiceVerifyResult.cs
@@ -9,6 +9,11 @@ namespace BootstrapBlazor.Components;
9
/// </summary>
10
public class InvoiceVerifyResult
11
{
12
+ /// <summary>
13
+ /// 获得/设置 查验次数。为历史查验次数
14
+ /// </summary>
15
+ public string? VerifyFrequency { get; set; }
16
+
17
/// <summary>
18
/// 获得/设置 机器编号
19
@@ -58,4 +63,9 @@ public class InvoiceVerifyResult
58
63
/// 获得/设置 发票实例
59
64
60
65
public InvoiceEntity? Invoice { get; set; }
66
67
68
+ /// 获得/设置 是否验证通过
69
70
+ public bool Valid => VerifyResult == "0001";
61
71
}
0 commit comments