22 lines
468 B
C#
22 lines
468 B
C#
|
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<string> BarCodeList { get; set; }
|
|||
|
}
|
|||
|
}
|