22 lines
438 B
C#
22 lines
438 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Modules.TradeMsgOutputModule.Dto
|
|
{
|
|
public class TradePriceDto
|
|
{
|
|
/// <summary>
|
|
/// 交易Id
|
|
/// </summary>
|
|
public int TradeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 期权费
|
|
/// </summary>
|
|
public double TradePrice { get; set; }
|
|
}
|
|
}
|