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.
DS7/DSWeb/Areas/MvcShipping/Models/Message/TRANSMIT.cs

48 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DSWeb.Areas.MvcShipping.Models.Message
{
/// <summary>
/// 签名
/// </summary>
public class TRANSMIT
{
/// <summary>
/// 业务类型
/// </summary>
public string BOXTYPE { get; set; }
/// <summary>
/// 请求状态
/// </summary>
public string FLOWSTATEG { get; set; }
/// <summary>
/// 企业编号
/// </summary>
public string TRADE_CODE { get; set; }
/// <summary>
/// 账册编号
/// </summary>
public string EMS_NO { get; set; }
/// <summary>
/// 业务状态
/// </summary>
public string STATUS { get; set; }
/// <summary>
/// 备用代码1
/// </summary>
public string NOTE_1 { get; set; }
/// <summary>
/// 备用代码2
/// </summary>
public string NOTE_2 { get; set; }
}
}