MQTT全局服务订阅,基本功能创建,标签打印等功能基本实现
This commit is contained in:
33
ZR.Model/MES/qc/DTO/backend/QcBackEndPrintMqttEventDto.cs
Normal file
33
ZR.Model/MES/qc/DTO/backend/QcBackEndPrintMqttEventDto.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ZR.Model.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 后道外箱标签打印发送消息模板
|
||||
/// </summary>
|
||||
public class QcBackEndPrintMqttEventDto
|
||||
{
|
||||
public string Path { get; set; }
|
||||
|
||||
public string SiteNo { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
public string PartNumber { get; set; }
|
||||
|
||||
public string WorkOrder { get; set; }
|
||||
|
||||
public string Team { get; set; } = "A";
|
||||
|
||||
public int Sort { get; set; } = 1;
|
||||
|
||||
public string BatchCode { get; set; }
|
||||
|
||||
public int PackageNum { get; set; } = 24;
|
||||
|
||||
public int LabelType { get; set; } = 1;
|
||||
|
||||
public string CreatedTime { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user