123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- namespace MySystem
- {
- public class JobMqMsg
- {
- public int Id { get; set; } //任务ID
- public int Status { get; set; } //任务状态
- public string Msg { get; set; } //任务响应消息
- public string Note { get; set; } //任务说明
- public string OrderString { get; set; } //消息指令
- public Brand BrandInfo { get; set; } //品牌数据
- public int StartId { get; set; } //开始ID
- public int EndId { get; set; } //结束ID
- public int FinishId { get; set; } //执行完毕的ID
- public int TableType { get; set; } //目标表类型 激活=1,交易=2,流量卡分佣交易=3,绑定=4,首刷=5,免押=6,返押=7,商户注册=8,商户在网达标=9
- }
- }
|