30 lines
655 B
C#
30 lines
655 B
C#
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; }
|
|
}
|
|
}
|