This commit is contained in:
2025-06-17 09:32:06 +08:00
parent 2202cf0605
commit 7828dcc618
14 changed files with 1204 additions and 61 deletions

View File

@@ -0,0 +1,29 @@
using MyCode.Project.Domain.Message.Act.PurchaseOrder;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Act.InvoiceOrder
{
public class FaPiaoAct
{
/// <summary>
/// 发票号
/// </summary>
public string F_VHUB_Text { get; set; }
/// <summary>
/// 发票日期
/// </summary>
public string F_URXD_Date { get; set; }
/// <summary>
/// 明细ID数组
/// </summary>
public List<Guid> Ids { get; set; }
}
}