19 lines
390 B
C#
19 lines
390 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YBDevice.NApi.Application.PrintInfo
|
|
{
|
|
/// <summary>
|
|
/// 打印编码请求参数
|
|
/// </summary>
|
|
public class PrintCodeC2SDto
|
|
{
|
|
/// <summary>
|
|
/// 设备编号列表
|
|
/// </summary>
|
|
public List<string> codes { get; set; }
|
|
}
|
|
}
|