You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
C#
51 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using FreeSql.DataAnnotations;
|
|
namespace djy.Paas.Model
|
|
{
|
|
/// <summary>
|
|
/// 阿里云报查询接收到达的消息队列
|
|
/// </summary>
|
|
public class tb_BaoguanAliActionList:DataBase
|
|
{
|
|
/// <summary>
|
|
/// 阿里唯一的消息ID 用于消费消息使用
|
|
/// </summary>
|
|
public string msgId { get; set; }
|
|
/// <summary>
|
|
/// 消息类型 DraftDecStatus 报关草单状态 DeclarationAttachments 报关单号 CusDecInfo 海关申报报⽂
|
|
/// </summary>
|
|
public string topic { get; set; }
|
|
/// <summary>
|
|
/// 阿⾥报关平台的唯⼀ 订单号
|
|
/// </summary>
|
|
public string uniqueNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 阿里消息企业ID
|
|
/// </summary>
|
|
public int companyId { get; set; }
|
|
/// <summary>
|
|
/// 数据 原始数据为base64 存入时已经解析
|
|
/// </summary>
|
|
[Column(StringLength =-2)]
|
|
public string data { get; set; }
|
|
|
|
/// <summary>
|
|
/// 阿里数据触发时间 通过data解析date获取
|
|
/// </summary>
|
|
/// <value></value>
|
|
public long AliTime{get;set;}
|
|
/// <summary>
|
|
/// 阿里状态 通过data解析statecode获取
|
|
/// </summary>
|
|
/// <value></value>
|
|
public string StateCode{get;set;}
|
|
|
|
public string StateName { get; set; }
|
|
}
|
|
}
|