14 lines
293 B
C#
14 lines
293 B
C#
namespace YLErp.Modules.PricingModule
|
|
{
|
|
/// <summary>
|
|
/// 定价页面初始值请求
|
|
/// </summary>
|
|
public class PricingInitValuesRequest
|
|
{
|
|
/// <summary>
|
|
/// 标的代码
|
|
/// </summary>
|
|
public string UnderlyingCode { get; set; }
|
|
}
|
|
}
|