You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
463 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity.Api.Resp
{
public class RfidPreviewResp
{
/// <summary>
/// 预览:生成 ASCLL
/// </summary>
public string GetAscllInfo { get; set; }
/// <summary>
/// 预览解析后Rfid信息
/// </summary>
public string AnalysisRfidInfo { get; set; }
}
}