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.
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace djy.Paas.Model
|
|
{
|
|
/// <summary>
|
|
/// 海关报文DecMessage.DecSign实体
|
|
/// </summary>
|
|
public class AliBaoGuanCustomesDecSignDto
|
|
{
|
|
/// <summary>
|
|
/// 操作类型
|
|
/// </summary>
|
|
public string OperType { get; set; }
|
|
/// <summary>
|
|
/// 操作员IC卡号
|
|
/// </summary>
|
|
public string ICCode { get; set; }
|
|
/// <summary>
|
|
/// 操作企业组织机构代码
|
|
/// </summary>
|
|
public string CopCode { get; set; }
|
|
/// <summary>
|
|
/// 操作员姓名
|
|
/// </summary>
|
|
public string OperName { get; set; }
|
|
/// <summary>
|
|
/// 客户端报关单编号
|
|
/// </summary>
|
|
public string ClientSeqNo { get; set; }
|
|
/// <summary>
|
|
/// 签名日期
|
|
/// </summary>
|
|
public string SignDate { get; set; }
|
|
/// <summary>
|
|
/// 客户端邮箱的HostId
|
|
/// </summary>
|
|
public string HostId { get; set; }
|
|
}
|
|
}
|