41 lines
922 B
C#
41 lines
922 B
C#
using MyCode.Project.Domain.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Domain.Message.Response.InvoiceOrder
|
|
{
|
|
public class TiaoMaResp
|
|
{
|
|
/// <summary>
|
|
/// 明细主键ID
|
|
/// </summary>
|
|
public Guid Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 对应的条码数组
|
|
/// </summary>
|
|
public List<TiaoMaList> BarCodeList { get; set; }
|
|
}
|
|
|
|
|
|
public class TiaoMaList: TiaoMa
|
|
{
|
|
/// <summary>
|
|
/// Desc:供应商ID
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string SupplierId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:供应商名称
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string SupplierName { get; set; }
|
|
}
|
|
}
|