JobMqMsg.cs 586 B

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