31 lines
754 B
C#
31 lines
754 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Model
|
|
{
|
|
public class SwapTradeContractDto
|
|
{
|
|
/// <summary>
|
|
/// 确认书地址
|
|
/// </summary>
|
|
public string Paths { get; set; }
|
|
/// <summary>
|
|
/// 确认书类型
|
|
/// </summary>
|
|
public string Type { get; set; }
|
|
public int TradeId { get; set; }
|
|
public long? SwapFlowEventId { get; set; }
|
|
|
|
public int ClientId { get; set; }
|
|
public string ClientName { get; set; }
|
|
public string FileName { get; set; }
|
|
|
|
public int? SwapFlowEventType { get; set; }
|
|
|
|
public string TradeNumber { get; set; }
|
|
}
|
|
}
|