using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using FreeSql.DataAnnotations;
namespace djy.Paas.Model
{
///
/// 阿里云报查询接收到达的消息队列
///
public class tb_BaoguanAliActionList:DataBase
{
///
/// 阿里唯一的消息ID 用于消费消息使用
///
public string msgId { get; set; }
///
/// 消息类型 DraftDecStatus 报关草单状态 DeclarationAttachments 报关单号 CusDecInfo 海关申报报⽂
///
public string topic { get; set; }
///
/// 阿⾥报关平台的唯⼀ 订单号
///
public string uniqueNumber { get; set; }
///
/// 阿里消息企业ID
///
public int companyId { get; set; }
///
/// 数据 原始数据为base64 存入时已经解析
///
[Column(StringLength =-2)]
public string data { get; set; }
///
/// 阿里数据触发时间 通过data解析date获取
///
///
public long AliTime{get;set;}
///
/// 阿里状态 通过data解析statecode获取
///
///
public string StateCode{get;set;}
public string StateName { get; set; }
}
}