using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Model
{
public class SwapTradeContractDto
{
///
/// 确认书地址
///
public string Paths { get; set; }
///
/// 确认书类型
///
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; }
}
}