This commit is contained in:
2025-04-27 16:59:10 +08:00
parent 7d3a84e9b0
commit da57cd5e5c
3 changed files with 73 additions and 16 deletions

View File

@@ -1,4 +1,5 @@
using System;
using MyCode.Project.Domain.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -16,6 +17,24 @@ namespace MyCode.Project.Domain.Message.Response.InvoiceOrder
/// <summary>
/// 对应的条码数组
/// </summary>
public List<string> BarCodeList { get; set; }
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; }
}
}