JobMqMsg.cs 814 B

123456789101112131415161718
  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; } //任务状态
  9. public string Msg { get; set; } //任务响应消息
  10. public string Note { get; set; } //任务说明
  11. public string OrderString { get; set; } //消息指令
  12. public Brand BrandInfo { get; set; } //品牌数据
  13. public int StartId { get; set; } //开始ID
  14. public int EndId { get; set; } //结束ID
  15. public int FinishId { get; set; } //执行完毕的ID
  16. public int TableType { get; set; } //目标表类型 激活=1,交易=2,流量卡分佣交易=3,绑定=4,首刷=5,免押=6,返押=7,商户注册=8,商户在网达标=9
  17. }
  18. }