- using System;
- using System.Collections.Generic;
- namespace MySystem
- {
- public class JobMqMsg
- {
- public int Id { get; set; } //任务ID
- public int Status { get; set; } //任务状态,0:待执行,1:核对完成,2:核对未完成,3:暂无数据核对
- public string Msg { get; set; } //任务响应消息
- public string Note { get; set; } //任务说明
- public string OrderString { get; set; } //消息指令
- public int StartId { get; set; } //开始ID
- public int FinishId { get; set; } //执行完毕的ID
- }
- }
|