This commit is contained in:
yuyubohh
2025-09-09 22:41:29 +08:00
commit e8494ba988
798 changed files with 252381 additions and 0 deletions

29
Models/CustResult.cs Normal file
View File

@@ -0,0 +1,29 @@
using System.ComponentModel;
namespace RB_MES_APICore.Models
{
public class CustResult
{
[DisplayName("请求结果")]
public bool FResult { get; set; }
[DisplayName("错误时返回的消息")]
public string FMess { get; set; }
[DisplayName("税号")]
public string FKey { get; set; }
[DisplayName("唯一号")]
public string organization { get; set; }
public contract contractno { get; set; }
/// <summary>
/// 合同明细
/// </summary>
public class contract
{
[DisplayName("合同号")]
public string number { get; set; }
[DisplayName("到期日")]
public string singdate { get; set; }
[DisplayName("金额")]
public string amount { get; set; }
}
}
}