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.
BaoGuanSYHT/djy.Model/Dto/AliBaoGuanOnetouchDataDto.cs

30 lines
645 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace djy.Paas.Model
{
/// <summary>
/// 阿里报文数据data解析
/// </summary>
public class AliBaoGuanOnetouchDataDto
{
public string Date { get; set; }
public string StateCode { get; set; }
public string StateName { get; set; }
public string BillNo { get; set; }
public string MessageContent { get; set; }
public string docType { get; set; }
public string docName { get; set; }
public string docUrl { get; set; }
}
}