using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Modules.TradeMsgOutputModule.Dto { public class TradePositionPvDto { public int TradeId { get; set; } public string TradeType { get; set; } public double PV { get; set; } } }